giving env-template a name that better indicates what you're meant to do with it.
creating a deploy script that basically just calls docker-compose build before ./scripts/publish
The state of this PR is sort of temporary as we work out what all should be included in it vs. #106
Testing Instructions
Run ./scripts/clean on your development environment (or just make a fresh clone if you don't have the project on your machine)
Set up your project for deployment without running the docker containers, and then run ./scripts/deploy --new. It should work where ./scripts/publish wouldn't as it builds containers as well as publishing.
Overview
This PR aims to streamline deployment by
env-template
a name that better indicates what you're meant to do with it.deploy
script that basically just callsdocker-compose build
before./scripts/publish
The state of this PR is sort of temporary as we work out what all should be included in it vs. #106
Testing Instructions
./scripts/clean
on your development environment (or just make a fresh clone if you don't have the project on your machine)./scripts/deploy --new
. It should work where./scripts/publish
wouldn't as it builds containers as well as publishing.Resolves #46