This folder contains the backend of transcribee.
We use uv for dependency management. To install all dependencies locally, run:
uv sync --dev
The default development configuration uses a sqlite database in db.sqlite3
. To set up the
database, run all migrations with
poe migrate
To create a new admin user, you can now run:
poe create_user --user admin --pass admin
Now you can start the development server with
poe dev
Warning The setup is not ready for production deployment yet.