Skip to content
Permalink
Branch: master
Find file Copy path
Find file Copy path
Fetching contributors…
Cannot retrieve contributors at this time
11 lines (7 sloc) 227 Bytes
from scholia.app import create_app
app = create_app(
text_to_topic_q_text_enabled=False,
third_parties_enabled=True)
app.config['APPLICATION_ROOT'] = '/'
if __name__ == '__main__':
app.run(debug=True, port=8100)
You can’t perform that action at this time.