Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 617 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 617 Bytes

transcribee-backend

This folder contains the backend of transcribee.

Installation

We use uv for dependency management. To install all dependencies locally, run:

uv sync --dev

Usage

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

Deployment

Warning The setup is not ready for production deployment yet.