42
loading...
This website collects cookies to deliver better user experience
Script to run commands in the container, was replaced with a Makefile. Serving as both documentation and one-command setup.
Script to setup local environment variables, was replaced with default values set either in the Docker Compose or the application. Local development shouldn't require extra effort to setup and should work from a fresh pull.
Script to pull additional libraries, was replaced with git submodules. Love or hate them, submodules are useful and cleaner when done right.
git push --mirror {destination}
helm_release
resource were referenced and easily updatable e.g., Image Tag.DATABASE_NAME = os.environ.get('DATABASE_NAME', 'postgres')
DATABASE_NAME = os.environ['DATABASE_NAME']
42