- Live version running on salah-ly.herokuapp.com
sometimes the live version responds with request timeout because we are using a free tier host.
-
Create virtual environment: (first time only)
navigate to project folder, then:
- Linux:
python3 -m venv venv
- Windows:
py -3 -m venv venv
- Linux:
-
Activate environment: (every time)
from your working terminal:
- Linux:
. venv/bin/activate
- Windows:
venv\Scripts\activate
- Linux:
-
Instal dependencies: (every pull)
pip install -r requirements.txt
Before every commit run: pip freeze > requirements.txt
to save your new packages