aboutsummaryrefslogtreecommitdiff
path: root/config/application.rb
Commit message (Collapse)AuthorAge
* Add lib to the eager_load_pathsrelease_6Christopher Baines2018-07-03
| | | | | To make accessing classes and modules in lib work in the production environment.
* Add locking around all Terraform actionsChristopher Baines2018-06-24
| | | | | To prevent them conflicting. Terraform itself has a locking mechanism, which isn't being used, but this should be sufficient.
* Add the web-console gemChristopher Baines2018-06-21
| | | | For easier debugging.
* Switch to using SQL as the schema formatChristopher Baines2018-04-12
| | | | | This is recommended by the Que library, but may come in useful elsewhere for PostgreSQL specific stuff.
* Move the terraform utilities to lib/Christopher Baines2018-04-12
| | | | | | | | | Change the module to a class, which is used to represent a terraform working directory. Change the routing for the terraform http backends, to remove any connection with mini environments, and remove this concern from the new TerraformWorkingDirectory class also.
* Rework the gem situationChristopher Baines2018-04-03
| | | | | | Use gem rather than require in config/boot.rb. This is better, as it only sets up the $LOAD_PATH, and doesn't actually require the gem. This prevents Rails getting loaded early, and getting confused.
* Initial commitChristopher Baines2018-03-29