-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.env.local.example
More file actions
40 lines (33 loc) · 1.59 KB
/
.env.local.example
File metadata and controls
40 lines (33 loc) · 1.59 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
## =============================================================================
## ROBOSYSTEMS DEVELOPMENT ENVIRONMENT OVERRIDES
## =============================================================================
##
## This is the template local development configuration file with example values.
##
## IMPORTANT: This file is committed to git and provides localhost URL overrides.
## - Docker Compose services use container hostnames (pg, valkey, graph-api, etc.)
## - justfile commands run on host machine and need localhost URLs
## - This file overrides .env container hostnames with localhost equivalents
##
## SETUP: Copy this file during initial setup
## cp .env.local.example .env.local
##
## The .env.local file is gitignored and may contain local customizations.
##
## =============================================================================
ROBOLEDGER_ENABLED=true
ROBOINVESTOR_ENABLED=true
EXTENSIONS_GRAPHQL_ENABLED=true
ADMIN_API_KEY=dev-admin-key-for-testing-only
POSTGRES_PASSWORD=postgres
DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@localhost:5432/robosystems
TEST_DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@localhost:5432/robosystems_test
EXTENSIONS_DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@localhost:5432/extensions
EXTENSIONS_TEST_DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD}@localhost:5432/extensions_test
VALKEY_AUTH_TOKEN=valkey
VALKEY_URL=redis://:${VALKEY_AUTH_TOKEN}@localhost:6379
GRAPH_API_URL=http://localhost:8001
AWS_ENDPOINT_URL=http://localhost:4566
AWS_ACCESS_KEY_ID=test
AWS_SECRET_ACCESS_KEY=test
OPENSEARCH_URL=http://localhost:9200