.serverenv 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Fill out this file, and renamed to '.server.env' in order to run this with Tilt
  2. # Required parameters
  3. SQL_LITE=false
  4. DB_NAME=porter
  5. DB_USER=porter
  6. DB_PASSWORD=porter
  7. DB_HOST=postgresql
  8. DB_PORT=5432
  9. # Required for accessing cluster control plane. If ENABLE_CAPI_PROVISIONER=false, nothing in this section will be used
  10. ENABLE_CAPI_PROVISIONER=false
  11. NATS_URL=nats:4222
  12. CLUSTER_CONTROL_PLANE_ADDRESS=http://ccp-web:7833
  13. # Github Login OAuth
  14. GITHUB_LOGIN_ENABLED=false
  15. # Github App for repo deployments, and preview environments. Remove these if you are not using preview environments or deploying from a repo locally
  16. GITHUB_APP_CLIENT_ID=<github_app_id>
  17. GITHUB_APP_CLIENT_SECRET=<github_secret>
  18. GITHUB_APP_WEBHOOK_SECRET=<webhook_secret>
  19. GITHUB_APP_NAME=<github_app_name>
  20. GITHUB_APP_ID=<github_app_id>
  21. # GITHUB_APP_SECRET_PATH is the path to your secret within the container. Tilt will sync your ~/.ssh/ folder into /app/ssh automatically. This will likely be /app/ssh/your_ssh_pem_name
  22. GITHUB_APP_SECRET_PATH=<path_to_secret>
  23. # Optional parameters
  24. HELM_APP_REPO_URL=https://charts.getporter.dev
  25. HELM_ADD_ON_REPO_URL=https://charts.getporter.dev
  26. # SERVER_URL must be set to your ngrok url, If you are using ngrok for your github app setup on the backend
  27. # SERVER_URL=
  28. # TELEMETRY\_\* are required if you are piping trace events to the open telemetry collector
  29. TELEMETRY_NAME=porter
  30. TELEMETRY_COLLECTOR_URL=otel-collector:4317