You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
10 months ago | |
---|---|---|
backend-app | 10 months ago | |
.gitignore | 10 months ago | |
poetry.lock | 10 months ago | |
pyproject.toml | 10 months ago | |
readme.md | 10 months ago |
readme.md
-
Установка python с офф сайта
-
Установка poetry pip install poetry
-
Создание папки проекта и добавить в него файл pyproject.toml с данными [markdown] [tool.poetry] [markdown] package-mode = false [tool.poetry.dependencies] python = "^3.12"
-
Установка poetry.lock от pyproject poetry install
-
Добавление библиотек через poetry poetry add fastapi uvicorn[standart] pydantic-settings sqlalchemy[asyncio] aioodbc orjson
-
Создаем гит проект для нашего приложения git init
-
Добавляем файл .gitignore
-
Alembic alembic revision --autogenerate -m "create tables user, login"
alembic upgrade head