.env.template 980 B

123456789101112131415161718192021222324
  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. # Port which Rails is exposed on, _only used for docker containers_.
  17. WEB_HOST_PORT=3000
  18. # Port which Postgres is exposed on, _only used for docker containers_.
  19. DB_HOST_PORT=5432