Spaces:
Runtime error
Runtime error
Commit ·
5907072
1
Parent(s): ff5ba96
add default org and project on setup
Browse files
docker-entrypoint-wrapper.sh
CHANGED
|
@@ -68,6 +68,12 @@ export AUTH_CUSTOM_NAME="Hugging Face"
|
|
| 68 |
# Disable authentication via username/password to enforce authentication via HF
|
| 69 |
export AUTH_DISABLE_USERNAME_PASSWORD="true"
|
| 70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 71 |
# Start Next.js in the background
|
| 72 |
echo "Starting Next.js..."
|
| 73 |
./web/entrypoint.sh node ./web/server.js \
|
|
|
|
| 68 |
# Disable authentication via username/password to enforce authentication via HF
|
| 69 |
export AUTH_DISABLE_USERNAME_PASSWORD="true"
|
| 70 |
|
| 71 |
+
# Setup default org and project
|
| 72 |
+
export LANGFUSE_DEFAULT_ORG_ID="default"
|
| 73 |
+
export LANGFUSE_DEFAULT_PROJECT_ID="default"
|
| 74 |
+
export LANGFUSE_DEFAULT_ORG_ROLE="member"
|
| 75 |
+
export LANGFUSE_DEFAULT_PROJECT_ROLE="member"
|
| 76 |
+
|
| 77 |
# Start Next.js in the background
|
| 78 |
echo "Starting Next.js..."
|
| 79 |
./web/entrypoint.sh node ./web/server.js \
|