CS3083 Project. Hosted on stack.trietmvo.com!
source the virtualenv.
For windows, ./venv/bin/activate and $env:FLASK_APP = 'stack', then flask run
For linux, export FLASK_APP=stack, then flask run
If none of these works, just pip install -r requirements.txt and python stack.py
flask_route contains all the possible route that the web application can go to.
sql contains all the create table and insert data query we used to populate the database.
server_config is all the file we used to setup nginx and wsgi in the public server.
static contains all the css, js and images we used to design the frontend.
venv, env and window_env are Python virtual environments that we used to setup the Linux server and develop on Window.
templates contains all the html files. it's quite messy right now.
stack.ini is used for setting up wsgi.
route.py setup all the Flask Blueprint that contains the major route we used.
stack.py is the entrypoint to the application.
wsgi.py is the entrypoint for wsgi.