.env 715 B

123456789101112131415161718192021222324252627282930
  1. COMPOSE_PROJECT_NAME=joystream
  2. PROJECT_NAME=query_node
  3. # We will use a single postgres service with multiple databases
  4. INDEXER_DB_NAME=query_node_indexer
  5. DB_NAME=query_node_processor
  6. DB_USER=postgres
  7. DB_PASS=postgres
  8. DB_HOST=localhost
  9. DB_PORT=5432
  10. DEBUG=index-builder:*
  11. TYPEORM_LOGGING=error
  12. ###########################
  13. # Indexer options #
  14. ###########################
  15. # Block height to start indexing from.
  16. # Note, that if there are already some indexed events, this setting is ignored
  17. BLOCK_HEIGHT=0
  18. ###############################
  19. # Processor GraphQL API #
  20. ###############################
  21. GRAPHQL_SERVER_PORT=4002
  22. GRAPHQL_SERVER_HOST=localhost
  23. WARTHOG_APP_PORT=4002
  24. WARTHOG_APP_HOST=localhost