-
Prereq for #1, and progress towards https://12factor.net/config
See https://www.dropwizard.io/1.3.5/docs/manual/core.html#environment-variables
-
> Yes, a configuration file would be appropriate.
Note that a configuration file doesn't get `import`ed. `import` is for source code; i.e. design-time materials.
A configuration file would get r…
-
This will give us deterministic builds. Reasons to do this are described over [at 12factor.net](https://12factor.net/build-release-run)
- Provide proof of that working in the test-project
- Add a refe…
-
The usual suspects here are Apache or Nginx but those are some modern alternatives out there:
- envoy: https://www.envoyproxy.io/
- sozu https://github.com/sozu-proxy/sozu
- https://github.com/fe…
-
Live by the rules
- Work hard. Never give in on quality.
- http://agilemanifesto.org/
- https://12factor.net/
- security-aware
- privacy-aware
- embrace failure
- https://landing.google.com…
-
gem 'rails_12factor' - prevents warnings about older gems when pushing to Heroku
gem 'sass', '3.2.13' - Avoids problems with sass caching on Heroku
Also, devise required config.secret_key ='somehash…
-
This issue is collecting some possible idea around the feature discussed in this chat [1]. The requirement has been popping in several occasions, so I think it deserve some space to be officially disc…
-
It is better to store application configuration in environment variables, rather than config files. It prevents secrets from being saved to VCS, and most of the configurations will change per deployme…
-
Centralize all static variable/object/constant variables (not sensitive) into a config module or file (eg `src/config.py`). In this way, we can find/manage/share common objects more easily into the pr…
-
It looks like nginx logs are written to the [filesystem](https://github.com/CHH/heroku-buildpack-php/blob/master/conf/nginx/base.conf.erb#L14-L15), which could fill up the disk on a busy dyno and also…