When using cprop as part of the luminus framework, there is a config.edn for each environment: dev, test, and prod. The files generated by luminus are mostly empty, and the developer can add settings if needed.
When pushing to prod on Heroku, however, these empty files cause a problem. We get an error saying a non-empty config file was not found. The file is present, but has an empty map {}. The workaround is to put a redundant or meaningless value in the map, but it seems the system should handle an empty map.
When using
cpropas part of theluminusframework, there is a config.edn for each environment: dev, test, and prod. The files generated byluminusare mostly empty, and the developer can add settings if needed.When pushing to prod on Heroku, however, these empty files cause a problem. We get an error saying a non-empty config file was not found. The file is present, but has an empty map
{}. The workaround is to put a redundant or meaningless value in the map, but it seems the system should handle an empty map.