-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
28 lines (25 loc) · 1.2 KB
/
.env.example
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
# Hasura
HASURA_ENDPOINT_PROTOCOL=http
# This can be either IP or hostname(domain).
HASURA_ENDPOINT_IP=localhost
# Sync port with hasura/config.yaml for local development environment
HASURA_ENDPOINT_PORT=8080
HASURA_ENDPOINT=${HASURA_ENDPOINT_PROTOCOL}://${HASURA_ENDPOINT_IP}:${HASURA_ENDPOINT_PORT}
# Docs for authentication: https://docs.hasura.io/1.0/graphql/manual/auth/authentication/index.html
HASURA_GRAPHQL_ADMIN_SECRET=helloworld
# Docs for logs: https://docs.hasura.io/1.0/graphql/manual/deployment/logging.html
HASURA_GRAPHQL_ENABLED_LOG_TYPES="startup, http-log, webhook-log, websocket-log, query-log"
# Set to "false" to disable console or for manual [migration](https://docs.hasura.io/1.0/graphql/manual/migrations/existing-database.html)
HASURA_GRAPHQL_ENABLE_CONSOLE=true
# Action secret for invoking actions from client
HASURA_ACTION_SECRET=hasuraactionsecret
# Docs for JWT: https://docs.hasura.io/1.0/graphql/manual/auth/authentication/jwt.html
HASURA_GRAPHQL_UNAUTHORIZED_ROLE=public
# Database
POSTGRES_ENDPOINT_IP=localhost
POSTGRES_ENDPOINT_PORT=5432
POSTGRES_DATABASE=test
POSTGRES_USERNAME=root
POSTGRES_PASSWORD=toor
# example for other timezones notation: DB_TIMEZONE=Asia/Seoul
POSTGRES_TIMEZONE=utc