ReadySetAI / api

This repository contains the API for the ReadySetAI project
0 stars 0 forks source link

Create a rough startkit API structure #1

Open kksudo opened 10 months ago

olees-orlenko commented 10 months ago

Image Надо ли что-то добавить, убрать, поменять?

kksudo commented 10 months ago

Image Надо ли что-то добавить, убрать, поменять?

Все устраивает. Чтобы показать дерево каталогов, можно использовать утилиту tree. Ниже пример.

.
├── README.md
├── alembic
│   ├── README
│   ├── __pycache__
│   │   └── env.cpython-311.pyc
│   ├── env.py
│   ├── script.py.mako
│   └── versions
├── alembic.ini
├── app
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-311.pyc
│   │   ├── crud.cpython-311.pyc
│   │   ├── dependencies.cpython-311.pyc
│   │   ├── main.cpython-311.pyc
│   │   ├── models.cpython-311.pyc
│   │   └── schemas.cpython-311.pyc
│   ├── api
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   └── __init__.cpython-311.pyc
│   │   └── api_v1
│   │       ├── __init__.py
│   │       ├── __pycache__
│   │       │   └── __init__.cpython-311.pyc
│   │       ├── deps.py
│   │       └── endpoints
│   │           ├── __pycache__
│   │           │   ├── auth.cpython-311.pyc
│   │           │   ├── files.cpython-311.pyc
│   │           │   └── users.cpython-311.pyc
│   │           ├── auth.py
│   │           ├── files.py
│   │           └── users.py
│   ├── crud.py
│   ├── db
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-311.pyc
│   │   │   └── database.cpython-311.pyc
│   │   └── database.py
│   ├── dependencies.py
│   ├── main.py
│   ├── models.py
│   ├── requirements.txt
│   └── schemas.py
├── docker
│   └── docker-compose.yaml
├── docs
│   ├── scheme.md
│   └── tech-defition.md
├── easyaiapi.iml
├── env -> .env
├── tests
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── conftest.cpython-311-pytest-7.4.0.pyc
│   │   ├── conftest.cpython-311-pytest-7.4.2.pyc
│   │   ├── test_main.cpython-311-pytest-7.4.0.pyc
│   │   ├── test_main.cpython-311-pytest-7.4.2.pyc
│   │   └── test_notes.cpython-311-pytest-7.4.2.pyc
│   └── test_api.py