A template for speeding up the development of web applications. Backend part
- Clone repository
- Install python 3.13.2
- Install requirements
- Install postgres
- Create a database, connect to it and set an extension:
\c <db_name>
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";- Create .env and fill in your data according to the sample from .env.example
- Update the database
alembic revision --autogenerate -m "<info_massege>"
alembic upgrade head- Create a root
python manage.py createrootpython run.py --host <host> --port <port>
# or
./run.sh -h <host> -p <port>