Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Allow deployment of langfuse with given API token #1109

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 13 additions & 0 deletions .env.dev.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,19 @@ S3_SECRET_ACCESS_KEY=
S3_BUCKET_NAME=
S3_REGION=

# SEED configuration
SEED_USER_ID="user-1"
SEED_USER_NAME="Demo user"
SEED_USER_EMAIL="demo@langfuse.com"
SEED_USER_PASSWORD="password"
SEED_PROJECT_ID="7a88fb47-b4e2-43b8-a06c-a5ce950dc53a"
SEED_PROJECT_NAME="llm-app"
SEED_PROMPT_NAME="summary-prompt"
SEED_API_KEY_ID="seed-api-key"
SEED_SECRET_KEY="sk-lf-1234567890"
SEED_PUBLIC_KEY="pk-lf-1234567890"
SEED_API_KEY_NOTE="seeded key"

# Set during docker build of application
# Used to disable environment verification at build time
# DOCKER_BUILD=1
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"db:reset": "npx prisma migrate reset",
"db:seed": "npx prisma db seed",
"db:seed:examples": "npx prisma db seed -- --environment examples",
"db:createdefaultuser": "npx prisma db seed -- --environment createdefaultuser",
"release": "release-it",
"models:migrate": "tsx scripts/model-match.ts"
},
Expand Down