.env 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. # Storage Node #
  23. ######################
  24. COLOSSUS_PORT=3333
  25. ###############################
  26. # Processor GraphQL API #
  27. ###############################
  28. GRAPHQL_SERVER_PORT=4002
  29. GRAPHQL_SERVER_HOST=graphql-server
  30. WARTHOG_APP_PORT=4002
  31. WARTHOG_APP_HOST=hydra-indexer-gateway
  32. # Default configuration is to use the docker container
  33. WS_PROVIDER_ENDPOINT_URI=ws://joystream-node:9944/
  34. # If running joystream-node on host machine you can use following address to reach it instead
  35. # WS_PROVIDER_ENDPOINT_URI=ws://host.docker.internal:9944/