Unit 4 (Full Stack Website) Project: Goal Up by Team Lorem
In order to work in the project, make a branch from main and ONLY and just ONLY merge with main when the feature you are working has been tested and it works how it is supposed to work. Heroku redeploys when a push is made to the main branch, so this is to make sure the deployed app does not break.
team-lorem-goal-up.herokuapp.com
In order to run the app in vscode, run the following commands:
python3 -m venv venvto setup a python virtual environment.- For Windows:
./venv/Scripts/activateto run the venv. - For MacOS/Linux
. /venv/bin/activateto run the venv
Sidenote: To exit out of the venv, type deactivate.
To install all dependencies do pip install -r requirements.txt
To install a python package do pip install <package_name>
To update the requirements.txt file do pip freeze --local > requirements.txt
flask run to run the app while the venv is active
Note: Always run the command after doing .venv/<Scripts or bin>/activate