https://github.com/aliyevh/flask_template
Flask Template
https://github.com/aliyevh/flask_template
boilerplate-template flask template
Last synced: about 1 month ago
JSON representation
Flask Template
- Host: GitHub
- URL: https://github.com/aliyevh/flask_template
- Owner: AliyevH
- Created: 2020-09-04T09:43:26.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-04T12:01:16.000Z (almost 6 years ago)
- Last Synced: 2025-07-27T03:53:24.138Z (11 months ago)
- Topics: boilerplate-template, flask, template
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Flask project Template ###
```python
Focus on project :)
# git
git@github.com:AliyevH/flask_template.git
# https
https://github.com/AliyevH/flask_template.git
```
```bash
.
├── Dockerfile
├── README.md
├── app
│ ├── __init__.py
│ ├── decorators.py
│ ├── errors.py
│ ├── models.py
│ └── routes.py
├── core
│ ├── __init__.py
│ └── settings
│ ├── __init__.py
│ ├── base.py
│ ├── development.py
│ └── production.py
├── requirements.txt
├── service.py
├── tests
│ ├── pytest.ini
│ └── test_other.py
└── uwsgi.ini
4 directories, 17 files
```