.env.template 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. PKPARSE_URL=
  2. # Default user for postgres. The default is simply 'postgres'. Please change
  3. # this to something more unique. Avoid unsafe URL characters (`@`, `:`, # `/`,
  4. # etc)
  5. POSTGRES_USER=pokemon_trade
  6. # Password for postgres. For docker containers, the default is simply
  7. # 'postgres'. Please change this to something more unique. For normal use (not
  8. # docker containers), you should specify the same password used when creating a
  9. # postgres role. Avoid unsafe URL characters (`@`, `:`, # `/`, etc)
  10. POSTGRES_PASSWORD=postgres
  11. # Name of the database to use. For docker containers, the default is
  12. # `POSTGRES_USER`, or simply `postgres`.
  13. # For normal use (not docker containers), please note that the test database
  14. # will be created as `ENV['POSTGRES_DB'] + "_test"`
  15. POSTGRES_DB=pokemon_trade_dev
  16. REDDIT_OAUTH_KEY=
  17. REDDIT_OAUTH_SECRET=
  18. GOOGLE_OAUTH_CLIENT_ID=
  19. GOOGLE_OAUTH_CLIENT_SECRET=
  20. DISCORD_CLIENT_ID=
  21. DISCORD_CLIENT_SECRET=
  22. # If you want to use redis locally, provide the URL, e.g. redis://127.0.0.1:6379
  23. REDIS_URL=
  24. # Port which Rails is exposed on, _only used for docker containers_.
  25. WEB_HOST_PORT=3000
  26. # Port which Postgres is exposed on, _only used for docker containers_.
  27. DB_HOST_PORT=5432