This commit is contained in:
Sebastian Sosa 2025-04-24 06:57:22 +00:00 committed by GitHub
commit dd0cceebd9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View file

@ -25,5 +25,5 @@ INFINITY_API_KEY = ""
# Development Configs
LITELLM_MASTER_KEY = "sk-1234"
DATABASE_URL = "postgresql://llmproxy:dbpassword9090@db:5432/litellm"
DATABASE_URL = "postgresql://llmproxy:dbpassword9090@localhost:5432/litellm"
STORE_MODEL_IN_DB = "True"

View file

@ -397,6 +397,9 @@ If you have suggestions on how to improve the code quality feel free to open an
### Services
1. Setup .env file in root
2. Run dependant services `docker-compose up db prometheus`
3. Install prisma `npm install -g prisma`
4. Run `prisma generate` to generate the prisma client
5. (If database needs to be reset run `prisma migrate reset` followed by `prisma db push`)
### Backend
1. (In root) create virtual environment `python -m venv .venv`