.env.template 624 B

12345678910111213141516171819
  1. PKPARSE_URL=
  2. # Superuser for postgres. The default is simply 'postgres'. Please change this
  3. # to something more unique. Avoid unsafe URL characters (`@`, `:`, # `/`, etc)
  4. POSTGRES_USER=postgres
  5. # Password for postgres. The default is simply 'postgres'. Please change this to
  6. # something more unique. Avoid unsafe URL characters (`@`, `:`, # `/`, etc)
  7. POSTGRES_PASSWORD=postgres
  8. # Name of the database for the containers to use. The default is
  9. # `POSTGRES_USER`, or simply `postgres`
  10. POSTGRES_DB=pokemon_trade_dev
  11. # Port which Rails is exposed on
  12. WEB_HOST_PORT=3000
  13. # Port which Postgres is exposed on
  14. DB_HOST_PORT=5432