https://github.com/aliyevh/fastapi_template
FastAPI Template
https://github.com/aliyevh/fastapi_template
boiler fastapi template
Last synced: about 2 months ago
JSON representation
FastAPI Template
- Host: GitHub
- URL: https://github.com/aliyevh/fastapi_template
- Owner: AliyevH
- Created: 2020-07-24T07:49:09.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-04T11:07:15.000Z (almost 6 years ago)
- Last Synced: 2025-06-08T09:06:15.154Z (about 1 year ago)
- Topics: boiler, fastapi, template
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- 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
.
├── README.md
├── alembic
│ ├── README
│ ├── env.py
│ ├── script.py.mako
├── alembic.ini
└── app
├── __init__.py
├── api
│ ├── __init__.py
│ ├── routers.py
│ └── v1
│ └── test_api.py
├── core
│ ├── __init__.py
│ └── settings
│ ├── __init__.py
│ ├── base_settings.py
│ ├── dev_settings.py
│ └── prod_settings.py
├── crud
│ ├── __init__.py
│ ├── base_crud.py
│ └── user_crud.py
├── db
│ ├── __init__.py
│ └── init_db.py
├── main.py
├── models
│ ├── __init__.py
│ └── user_model.py
└── schemas
├── __init__.py
└── user_schema.py
```