.env 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. ###########################
  16. # Indexer options #
  17. ###########################
  18. # Block height to start indexing from.
  19. # Note, that if there are already some indexed events, this setting is ignored
  20. BLOCK_HEIGHT=0
  21. ###############################
  22. # Processor GraphQL API #
  23. ###############################
  24. GRAPHQL_SERVER_PORT=4002
  25. GRAPHQL_SERVER_HOST=graphql-server
  26. GRAPHQL_PLAYGROUND_SUBSCRIPTION_ENDPOINT=ws://localhost:8081/graphql
  27. WARTHOG_APP_PORT=4002
  28. WARTHOG_APP_HOST=hydra-indexer-gateway
  29. # Default configuration is to use the docker container
  30. WS_PROVIDER_ENDPOINT_URI=ws://joystream-node:9944/
  31. # If running joystream-node on host machine you can use following address to reach it instead
  32. # WS_PROVIDER_ENDPOINT_URI=ws://host.docker.internal:9944/