https://github.com/joewlos/joe_flask_template
Joe's Template for Development in Flask
https://github.com/joewlos/joe_flask_template
Last synced: 3 months ago
JSON representation
Joe's Template for Development in Flask
- Host: GitHub
- URL: https://github.com/joewlos/joe_flask_template
- Owner: joewlos
- Created: 2021-03-03T21:03:31.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-03-04T20:14:43.000Z (over 4 years ago)
- Last Synced: 2025-01-15T12:20:18.856Z (5 months ago)
- Language: Python
- Size: 604 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Joe Flask Template
#### APP STRUCTURE
```
- app.py
- config.py
- conda_environment.yml
- requirements.txt
- application
- auth.py
- routest.py
- models
- shared.py
- user.py
- testing
- tests_base.py
- user
- tests.py
- static
- css
- sytlesheet.css
- images
- templates
- base.html
- index.html
- login.html
- signup.html
```
#### ENVIRONMENT
`requirements.txt` contains the packages for pip installation. If using Anaconda to manage packages, create a new environment named `joe_flask_template` from `conda_environment.txt`.#### TESTING
Execute the following command to run tests for the routes:
```
$ python -m unittest discover
```
This template includes a user test by default.