You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,8 @@ In order to configure the application you can use the following ENV variables:
72
72
|`SECRET_KEY_BASE`| Secret key for the application, generate a new one with the command `rails secret`||
73
73
|`DATABASE_URL`| Database URL, the format is `postgresql://user:password@host:port/database`||
74
74
|`RAILS_SERVE_STATIC_FILES`| Tell the application to serve static files (you might want to turn this off if you are using an external web server to serve files from the `public` folder) |`true`|
75
+
|`RAILS_ASSET_HOST`| CDN or external host to serve assets from (ie: `cdn.mydomain.tld`) ||
76
+
|`ASSETS_PRECOMPILE`| Set to `true` to enable asset precompilation with compression during startup ||
75
77
|`RAILS_LOG_TO_STDOUT`| Tell the application to log to STDOUT (useful for Docker) |`true`|
76
78
|`RAILS_LOG_LEVEL`| Log level for the application (use `debug` for maximum information) |`info`|
77
79
|`RAILS_MAX_THREADS`| Maximum number of threads to use in the application (use `1` if multithreading is not desired) |`5`|
@@ -83,7 +85,8 @@ In order to configure the application you can use the following ENV variables:
83
85
|`STORAGE_PROVIDER`| Storage provider for the application (currently the application supports `local` and `amazon`) |`amazon`|
84
86
|`FORCE_SSL`| Force SSL connections |`false`|
85
87
|`MAIL_LINK_HOST`| Host to use in the links sent by email (use your domain without protocol `mydomain.tld`) ||
86
-
|`MAIL_LINK_PROTOCOL`| Protocol to use in the previous host defined for links sent by email |`https`|
88
+
|`MAIL_LINK_PROTO`| Protocol to use in the previous host defined for links sent by email |`https`|
89
+
|`MAILER_SENDER`| Email address used as the sender for Devise emails (ie: `noreply@mydomain.tld`) |`please-change-me-at-config-initializers-devise@example.com`|
87
90
|`SMTP_ADDRESS`| SMTP server address (ie: `smtp.mailgun.org`) ||
88
91
|`SMTP_PORT`| SMTP server port (ie: `587`) ||
89
92
|`SMTP_DOMAIN`| SMTP domain (usually the application's domain) ||
0 commit comments