python3 -m venv coen315
: Setup virtual environment.pip install requirements.txt
: Install dependenciesexport FLASK_APP=app.py
: let Flask know what application you want to runflask run
: This runs the flask app atlocalhost:5000
url
/start
is the Home page for BART Trip planner/start?source=12TH&dest=16TH
means Origin is 12th St. and Destination is 16th St./stations
is called by default on load/station
is called after submit/trips
is called after submit- Couldn't get subdomain to work on aws.