.env 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. WARTHOG_APP_PORT=4002
  27. WARTHOG_APP_HOST=hydra-indexer-gateway
  28. # Default configuration is to use the docker container
  29. WS_PROVIDER_ENDPOINT_URI=ws://joystream-node:9944/
  30. # If running joystream-node on host machine you can use following address to reach it instead
  31. # WS_PROVIDER_ENDPOINT_URI=ws://host.docker.internal:9944/
  32. ######################
  33. # Storage Node #
  34. ######################
  35. COLOSSUS_PORT=3333
  36. QUERY_NODE_HOST=${GRAPHQL_SERVER_HOST}:${GRAPHQL_SERVER_PORT}
  37. WORKER_ID=0
  38. ACCOUNT_URI=//Alice