Skip to content
This repository has been archived by the owner on Mar 5, 2023. It is now read-only.

Latest commit

 

History

History
20 lines (11 loc) · 558 Bytes

run_website.md

File metadata and controls

20 lines (11 loc) · 558 Bytes

CoNekt Website

CoNekt is a flask app, all that is required to start the website is running. Note that the virtualenv needs to be set up and activated.

python run.py

or using cli

export FLASK_APP=run.py
flask run

# or

python -m flask run

This will run the website on port 5000 on localhost. Using an SSH tunnel this can be accessed remotely.

To run this permanently on a server check the web on how to host a flask app using apache2, nginx or supervisor.