Sets up a development copy of Let's Talk Tech environments
Copy the default env files:
for file in *.default; do
cp "$file" "${file%%.default}"
done
Copy the .env
file default:
cp default.env .env
Modify the .env
file as necessary. Lines that are not commented-out are required, commented lines are optional.
To pull the latest configured docker images, and re-deploy services as necessary, run the following command:
docker-compose pull && docker-compose up --detach