-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.local.example
More file actions
36 lines (28 loc) · 1.03 KB
/
env.local.example
File metadata and controls
36 lines (28 loc) · 1.03 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
# Local environment variables for act (GitHub Actions runner)
# Copy this to .env.local and customize as needed
# GitHub token for API access (optional but recommended)
# Get a personal access token from: https://github.com/settings/tokens
# GITHUB_TOKEN=your_github_token_here
# Docker configuration for OrbStack (macOS)
# If using Docker Desktop, change to: unix:///var/run/docker.sock
DOCKER_HOST=unix:///Users/ryan/.orbstack/run/docker.sock
# Rust environment variables
CARGO_TERM_COLOR=always
RUSTFLAGS=-Dwarnings
RUST_BACKTRACE=1
CARGO_INCREMENTAL=0
CARGO_NET_RETRY=10
RUSTUP_MAX_RETRIES=10
# Application
DATABASE_URL=postgres://postgres:postgres@localhost:5432/rara
HTTP_BIND=127.0.0.1:25555
GRPC_BIND=127.0.0.1:50051
# Consul KV (optional - for fetching config from Consul)
# When CONSUL_HTTP_ADDR is set, RARA__ env vars are ignored.
# CONSUL_HTTP_ADDR=http://localhost:8500
# Act-specific variables
ACT=true
# Override runner OS for local testing (act limitation)
RUNNER_OS=Linux
# Disable problematic features in local environment
CI=true