Skip to content
Permalink
eec33e72b8
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
20 lines (11 sloc) 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.