-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
remove staging environment + force STORAGE_PROVIDER=local in Docker p…
…roduction test
- Loading branch information
Showing
6 changed files
with
3 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,6 +67,7 @@ In order to configure the application you can use the following ENV variables: | |
| ENV | Description | Default | | ||
| --- | --- | --- | | ||
| `ADMINS` | Space separated list of emails for the superadmins (ie: `[email protected]` | | | ||
| `ALLOWED_HOSTS` | Put here the list of hosts allowed to access the application. Separate with spaces, for instance: `www.timeoverflow.org timeoverflow.org` | `localhost` | | ||
| `RAILS_ENV` | Define the rails environment (not necessary to setup unless you have some special requirements) | `production` | | ||
| `SECRET_KEY_BASE` | Secret key for the application, generate a new one with the command `rails secret` | | | ||
|
@@ -96,8 +97,6 @@ In order to configure the application you can use the following ENV variables: | |
| `AWS_SECRET_ACCESS_KEY` | AWS secret access key (only if `STORAGE_PROVIDER` is `amazon`) | | | ||
| `AWS_BUCKET` | AWS bucket name (only if `STORAGE_PROVIDER` is `amazon`) | | | ||
| `AWS_REGION` | AWS region (only if `STORAGE_PROVIDER` is `amazon`) | | | ||
| `ADMINS` | Space separated list of emails for the superadmins (ie: `[email protected]` | | | ||
|
||
|
||
## Contributions | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ services: | |
- RAILS_LOG_LEVEL=debug | ||
- REDIS_URL=redis://redis:6379/0 | ||
- [email protected] | ||
- STORAGE_PROVIDER=local | ||
ports: | ||
- 3000:3000 | ||
depends_on: | ||
|
@@ -30,6 +31,7 @@ services: | |
- RAILS_LOG_LEVEL=debug | ||
- REDIS_URL=redis://redis:6379/0 | ||
- [email protected] | ||
- STORAGE_PROVIDER=local | ||
- RUN_SIDEKIQ=true | ||
depends_on: | ||
- db | ||
|