12345678910111213141516171819 |
- Steps to run the site
- 1. Install Flask with your package manager
- 2. Ensure directory structure (html file in templates)
- flaskpage.py
- templates |_ stat.html
- |_ webpage.html
- 3. Create FLASK_APP variable
- On a terminal, execute,
- export FLASK_APP=flaskPage.py
- 4. Final Step
- flask run
|