Manual Install
Prerequisites
Database Setup
1
createdb qubit
\c qubit
CREATE EXTENSION vector;2
Variable
Description
Required
3
export DATABASE_URL="postgresql://postgres:password@localhost:5432/qubit"
export REDIS_URL="redis://localhost:6379/0"
export AUTH_SECRET_KEY="your_secret_key_here"
export OPENAI_API_KEY="your_openai_key_here"Install & Run
1
pip install -r requirements.txt
alembic upgrade head2
python -m qubit.scripts.create_admin --username admin --email [email protected] --password your_password3
python -m qubit.main --config data/config.yamlLast updated