-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy path.env.template
More file actions
69 lines (62 loc) · 3.2 KB
/
Copy path.env.template
File metadata and controls
69 lines (62 loc) · 3.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# =============================================================================
# RocketRide - Environment Template
#
# Copy this file to .env and fill in your values.
#
# This file configures your LOCAL development environment.
# Fixed infrastructure values (OAuth2 endpoint, Zitadel client IDs) live
# in .config and should not be duplicated here.
#
# See .config for: RR_ZITADEL_URL, RR_ZITADEL_CLIENT_ID,
# RR_ZITADEL_VSCODE_CLIENT_ID
# =============================================================================
# =============================================================================
# SERVER CONNECTION
# =============================================================================
# Your local dev server URI -- where the extension and SDKs connect for
# pipeline execution.
ROCKETRIDE_URI=http://localhost:5565
# API key for authenticating with the server.
# The default "MYAPIKEY" matches the engine's built-in dev key.
# For on-prem or production servers, replace with your real API key.
ROCKETRIDE_APIKEY=MYAPIKEY
# =============================================================================
# FILE EXPLORER — SIGNING KEY
# =============================================================================
# Secret key used to sign JWT tokens for the /task/fetch endpoint.
# Required when using the local filesystem store backend so the File Explorer
# can generate presigned URLs for streaming video/audio and downloading files.
# Generate one with: python -c "import secrets; print(secrets.token_urlsafe(32))"
RR_SIGNING_KEY=
# =============================================================================
# PIPELINE VARIABLES (ROCKETRIDE_*)
# =============================================================================
# Variables prefixed with ROCKETRIDE_ are passed through to pipeline tasks
# and are accessible inside nodes as environment variables via ${ROCKETRIDE_*}.
# Add API keys for third-party services your pipelines use.
#
# Examples:
# ROCKETRIDE_OPENAI_KEY=sk-...
# ROCKETRIDE_ANTHROPIC_KEY=sk-ant-...
# ROCKETRIDE_GEMINI_KEY=...
# ROCKETRIDE_OLLAMA_HOST=http://localhost:11434
# =============================================================================
# S3 TEST VARIABLES (ROCKETRIDE_TEST_S3_*)
# =============================================================================
# Enable these if you want to run the S3Store tests.
#
# ROCKETRIDE_TEST_S3_ENDPOINT=http://localhost:9000
# ROCKETRIDE_TEST_S3_REGION=us-east-1
# ROCKETRIDE_TEST_S3_ACCESS_KEY_ID=minioadmin
# ROCKETRIDE_TEST_S3_SECRET_ACCESS_KEY=minioadmin
# ROCKETRIDE_TEST_S3_BUCKET=rocketride-test
# =============================================================================
# AZURE TEST VARIABLES (ROCKETRIDE_TEST_AZURE_*)
# =============================================================================
# Enable these if you want to run the AzureBlobStore tests.
#
# ROCKETRIDE_TEST_AZURE_DEFAULT_PROTOCOL=http
# ROCKETRIDE_TEST_AZURE_ACCOUNT_NAME=devstoreaccount1
# ROCKETRIDE_TEST_AZURE_ACCOUNT_KEY=Eby8vdM02xNOcqFlqUwJPLlmEtlCDXJ1OUzFT50uSRZ6IFsuFq2UVErCz4I6tq/K1SZFPTOtr/KBHBeksoGMGw== # gitleaks:allow
# ROCKETRIDE_TEST_AZURE_BLOB_ENDPOINT=http://127.0.0.1:10000/devstoreaccount1
# ROCKETRIDE_TEST_AZURE_CONTAINER=rocketride-test