-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env.dev
30 lines (26 loc) · 876 Bytes
/
.env.dev
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
# Infra
DATABASE_URL=postgres://postgres:postgres@postgres:5432/postgres
RABBITMQ_PORT=5672
RABBITMQ_MANAGEMENT_PORT=15672
# Hasura
HASURA_GRAPHQL_ADMIN_SECRET=hasura-admin
HASURA_GRAPHQL_JWT_SECRET='{"type":"HS256","key":"my-jwt-secret-key-with-at-least-32-chars"}'
HASURA_GRAPHQL_ENABLE_CONSOLE=true
HASURA_GRAPHQL_CORS_DOMAIN="*"
HASURA_GRAPHQL_PORT=6565
FILES_GATEWAY_URL=https://example.com
FILES_GATEWAY_TOKEN=1234567890
PORT=3000
RPC_ENDPOINT=wss://rpc.taurus.subspace.foundation/ws
PRIVATE_KEYS_PATH='<private-keys-path>'
CORS_ALLOWED_ORIGINS=*
OBJECT_MAPPING_ARCHIVER_URL=wss://indexer.taurus.autonomys.xyz
MAX_CACHE_SIZE=1073741824
AUTH_SERVICE_URL=http://auth:3030
AUTH_SERVICE_API_KEY=1234567890
# Auth
AUTH_PORT=3030
JWT_SECRET=my-jwt-secret-key-with-at-least-32-chars
JWT_SECRET=$(echo $JWT_SECRET | base64)
JWT_SECRET_ALGORITHM=HS256
API_SECRET=1234567890