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