| 123456789101112131415161718192021222324252627282930313233343536 |
- PKPARSE_URL=
- # Default user for postgres. The default is simply 'postgres'. Please change
- # this to something more unique. Avoid unsafe URL characters (`@`, `:`, # `/`,
- # etc)
- POSTGRES_USER=pokemon_trade
- # Password for postgres. For docker containers, the default is simply
- # 'postgres'. Please change this to something more unique. For normal use (not
- # docker containers), you should specify the same password used when creating a
- # postgres role. Avoid unsafe URL characters (`@`, `:`, # `/`, etc)
- POSTGRES_PASSWORD=postgres
- # Name of the database to use. For docker containers, the default is
- # `POSTGRES_USER`, or simply `postgres`.
- # For normal use (not docker containers), please note that the test database
- # will be created as `ENV['POSTGRES_DB'] + "_test"`
- POSTGRES_DB=pokemon_trade_dev
- REDDIT_OAUTH_KEY=
- REDDIT_OAUTH_SECRET=
- GOOGLE_OAUTH_CLIENT_ID=
- GOOGLE_OAUTH_CLIENT_SECRET=
- DISCORD_CLIENT_ID=
- DISCORD_CLIENT_SECRET=
- # If you want to use redis locally, provide the URL, e.g. redis://127.0.0.1:6379
- REDIS_URL=
- # Port which Rails is exposed on, _only used for docker containers_.
- WEB_HOST_PORT=3000
- # Port which Postgres is exposed on, _only used for docker containers_.
- DB_HOST_PORT=5432
|