python server is in debug mode

master
Malar Kannan 2017-07-13 17:08:27 +05:30
parent 3f09cdca6e
commit 2aa2cf1c83
2 changed files with 4 additions and 1 deletions

View File

@ -27,7 +27,7 @@ export class Main extends React.Component<any, any> {
</Header.Content>
</Header>
</Segment>
<LexSetup {...this.props} fileName="/new_es_orig.xml"/>
<LexSetup {...this.props} fileName="/new_es.xml"/>
</div>
);
}

View File

@ -9,3 +9,6 @@ def walle_index():
@app.route('/test')
def walle_test():
return "test"
if __name__ == '__main__':
app.run(debug=True)