.
├── Procfile
├── ReadMe.md
├── requirements.txt
├── run.py
└── stockapp
├── __init__.py
├── database.db
├── forms.py
├── models.py
├── request.py
├── routes.py
├── static
│ └── main.css
└── templates
├── account.html
├── home.html
├── layout.html
├── login.html
├── main.html
├── portfolio.html
├── register.html
└── transaction.html
Python Version 3.7 or higher
On macOS and Linux
python3 -m venv env
On Windows:
py -m venv env
to make a virtual enviorment specific to the application. This will make sure that everything installed will be only for the project and not your overall system.
On macOS and Linux
source env/bin/activate
On Windows:
\env\Scripts\activate.bat
In main directory run command
On macOS and Linux
pip install -r requirements.txt
On Windows:
py install -r requirements.txt
flask run
All local environment configuration is located in the .flaskenv file