An open API service indexing awesome lists of open source software.

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

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
```