To run this project, you need to have the following software installed:
- Python >=3.13.2
- Uv
- PostgreSQL
- Node.js 22.17.0 (for build css)
Create .env file with code kind of:
webserver=127.0.0.1,localhost
DEBUG=True
SECRET_KEY=secret_key
DATABASE_URL=postgresql://admin:password@localhost:5432/db_name
DJANGO_SUPERUSER_USERNAME=admin
[email protected]
DJANGO_SUPERUSER_PASSWORD=passwordCreate a PostgreSQL user (or reuse an existing one) and a database using the parameters from DATABASE_URL.
To set up the project, navigate to the project directory and run the following commands:
make installmake migratemake dev