https://github.com/eon01/flasklate
A Bootstrap Template To Start Flask Projects (Python3)
https://github.com/eon01/flasklate
flask python python-3
Last synced: 16 days ago
JSON representation
A Bootstrap Template To Start Flask Projects (Python3)
- Host: GitHub
- URL: https://github.com/eon01/flasklate
- Owner: eon01
- License: mit
- Created: 2017-02-27T23:36:09.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-07T09:20:26.000Z (about 9 years ago)
- Last Synced: 2025-01-02T23:22:29.376Z (over 1 year ago)
- Topics: flask, python, python-3
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# flasklate
A code template to start Flask projects
## Without Docker
```
virtualenv -p python3 my_app
cd my_app
. bin/activate
git clone https://github.com/eon01/flasklate.git app
cd app
pip install -r requirements.txt
export FLASK_APP=app.py
flask run
```
## With Docker
```
git clone https://github.com/eon01/flasklate.git app
cd app
docker build -t my_app .
docker run -it --name my_app -p 80:5000 my_app
```