-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.env.test.example
More file actions
20 lines (16 loc) · 837 Bytes
/
Copy path.env.test.example
File metadata and controls
20 lines (16 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Codra test environment example.
# Copy to .env.test for local tests. These values are fake and must not be
# reused for production, staging, or any real external service.
GITHUB_APP_SLUG="codra-test-app"
GITHUB_APP_WEBHOOK_SECRET="fake-webhook-secret"
GITHUB_CLIENT_ID="fake-dashboard-client-id"
GITHUB_CLIENT_SECRET="fake-dashboard-client-secret"
AUTH_CALLBACK_URL="https://codra.test/auth/github/callback"
DASHBOARD_ALLOWED_USERS="devarshishimpi"
APP_URL="https://codra.test"
BOT_USERNAME="codra-test-app"
LLM_CONFIG_ENCRYPTION_KEY="fake-local-llm-config-encryption-key"
# Required. Must point at a disposable Postgres database because tests reset and
# write data while running.
DATABASE_URL="postgresql://postgres:postgres@127.0.0.1:5432/codra_test"
TEST_DATABASE_URL="postgresql://postgres:postgres@127.0.0.1:5432/codra_test"