alicia-ziying-yang / conTEXT-explorer

ConTEXT Explorer is an open Web-based system for exploring and visualizing concepts (combinations of occurring words and phrases) over time in the text documents.
Apache License 2.0
9 stars 3 forks source link

Default is to run locally, but the Readme indicates otherwise #8

Closed baileythegreen closed 3 years ago

baileythegreen commented 3 years ago

The Readme indicates that the Ubuntu server is the default option and action needs to be taken to run this locally; however, app.py is set to run locally by default.

Readme

If you want to run ConTEXT Explorer on your local computer, comment the code for ubuntu server, and uncomment the last line in app.py:

# app.run_server(debug=False, host="0.0.0.0") # ubuntu server    
app.run_server(debug=False, port="8010") # local test

You can then access the app through your browser: http://127.0.0.1:8010

app.py

#app.run_server(debug=False,host="0.0.0.0") # ubuntu server
app.run_server(debug=False, port="8010") # local test

JOSS Reference: openjournals/joss-reviews#3347

alicia-ziying-yang commented 3 years ago

fixed. Thanks for pointing out.