4
edits
| Line 39: | Line 39: | ||
# `git checkout -b branch-name` to make a new branch based of the default (sudoroom) | # `git checkout -b branch-name` to make a new branch based of the default (sudoroom) | ||
# `touch /usr/app/django.log` (this is where the logs will go, and not creating it as a file seemed to create it as a dir which docker hated) | # `touch /usr/app/django.log` (this is where the logs will go, and not creating it as a file seemed to create it as a dir which docker hated) | ||
# 'echo "MM_ENV=Development" > ./docker/.env` - I am not sure if this needs to go into the docker directory, or just exist? .env files are .gitignored anyway, but it looks like this is used by docker to set some environment vars in the docker-compose.yml | |||
# `cd ./docker` | # `cd ./docker` | ||
# `docker pull` (this make take a while) | # `docker pull` (this make take a while) | ||
edits