.env 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  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=localhost
  12. DB_PORT=5432
  13. DEBUG=index-builder:*
  14. TYPEORM_LOGGING=error
  15. DEBUG=index-builder:*
  16. TYPEORM_LOGGING=error
  17. ###########################
  18. # Indexer options #
  19. ###########################
  20. # Block height to start indexing from.
  21. # Note, that if there are already some indexed events, this setting is ignored
  22. BLOCK_HEIGHT=0
  23. ###############################
  24. # Processor GraphQL API #
  25. ###############################
  26. GRAPHQL_SERVER_PORT=4002
  27. GRAPHQL_SERVER_HOST=localhost
  28. WARTHOG_APP_PORT=4002
  29. WARTHOG_APP_HOST=localhost
  30. # Default configuration is to use the docker container
  31. WS_PROVIDER_ENDPOINT_URI=ws://joystream-node:9944/
  32. # If running joystream-node on host machine you can use following address to reach it instead
  33. # WS_PROVIDER_ENDPOINT_URI=ws://host.docker.internal:9944/