.env.template 1.0 KB

123456789101112131415161718192021222324252627
  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. # If you want to use redis locally, provide the URL, e.g. redis://127.0.0.1:6379
  17. REDIS_URL=
  18. # Port which Rails is exposed on, _only used for docker containers_.
  19. WEB_HOST_PORT=3000
  20. # Port which Postgres is exposed on, _only used for docker containers_.
  21. DB_HOST_PORT=5432