Web page & Server
$sudo apt-get install python3.6
$sudo apt install python3-venv
$cd [project name]
$python3 -m venv [venv]
$source [venv]/bin/activate
$pip3 install Flask
< PROJECT ROOT >
|
|-- static/
| |-- <css, JS, images>
|
|-- templates/ # base page for main page
| |-- layouts/
| | |-- base.html
| |
| |-- side/
| | |-- navigation.html
| | |-- sidebar.html
| | |-- footer.html
| | |-- scripts.html
| |
| |-- index.html
|
|-- requirements.txt
|-- .env # Inject Configuration via Environment
|-- config.py # Set up the app
|-- run.py