.env 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. COMPOSE_PROJECT_NAME=joystream
  2. PROJECT_NAME=query_node
  3. # We will use a single postgres service with multiple databases
  4. # The env variables below are by default used by all services and should be
  5. # overriden in local env files
  6. # DB config
  7. INDEXER_DB_NAME=query_node_indexer
  8. DB_NAME=query_node_processor
  9. DB_USER=postgres
  10. DB_PASS=postgres
  11. DB_HOST=db
  12. DB_PORT=5432
  13. DEBUG=index-builder:*
  14. TYPEORM_LOGGING=error
  15. ## Indexer options
  16. # Block height to start indexing from.
  17. # Note, that if there are already some indexed events, this setting is ignored
  18. BLOCK_HEIGHT=0
  19. # Websocket RPC endpoint hydra indexer will use.
  20. INDEXER_WS_PROVIDER_ENDPOINT_URI=ws://joystream-node:9944/
  21. # GraphQL ports (WARTHOG_APP_HOST overrides GRAPHQL_SERVER_PORT)
  22. # So keep them the safe to avoid confusion, as long as each service is
  23. # run in a separate container on same host then there is no issue.
  24. # It does not make sense to have both but hydra codegen demands them.
  25. GRAPHQL_SERVER_PORT=4001
  26. GRAPHQL_SERVER_HOST=graphql-server
  27. WARTHOG_APP_PORT=4001
  28. WARTHOG_APP_HOST=hydra-indexer-gateway