fixed production xmldir
parent
76c6c14f6a
commit
f49df77601
|
|
@ -16,6 +16,7 @@
|
||||||
"curly": true,
|
"curly": true,
|
||||||
"eofline": false,
|
"eofline": false,
|
||||||
"forin": true,
|
"forin": true,
|
||||||
|
"type-check": true,
|
||||||
"indent": [true, "spaces"],
|
"indent": [true, "spaces"],
|
||||||
"interface-name": [true, "never-prefix"],
|
"interface-name": [true, "never-prefix"],
|
||||||
"jsdoc-format": true,
|
"jsdoc-format": true,
|
||||||
|
|
|
||||||
|
|
@ -7,7 +7,7 @@ import glob
|
||||||
import os
|
import os
|
||||||
|
|
||||||
production = False if os.environ.get('NODE_ENV','') == 'development' else True
|
production = False if os.environ.get('NODE_ENV','') == 'development' else True
|
||||||
xmlDir = 'public/' if production else 'build/'
|
xmlDir = 'build/' if production else 'public/'
|
||||||
|
|
||||||
@app.route('/')
|
@app.route('/')
|
||||||
def walle_index():
|
def walle_index():
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue