From e16a56dfeec937b6521cf211187186fe281c27e9 Mon Sep 17 00:00:00 2001 From: Daniel Molares Date: Wed, 25 Sep 2024 13:38:00 -0400 Subject: [PATCH] Hotfix: minor changes to INSTALL file and Makefile command --- INSTALL.md | 1 - Makefile | 4 ++-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 7fd40931..f8336b51 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -45,7 +45,6 @@ This command copies the `.env.example` into `.env`, creating the `.env` file in - `APP_LMS`: `canvas` for Canvas LMS. `d2l` for D2l Brightspace LMS. - `JWK_BASE_URL`: If you are self-hosting Canvas, you may set it to the URL of your instance of Canvas. (Example: `JWK_BASE_URL="https://canvas.dev.myschool.edu"`) - `DEFAULT_LANG`: (optional) `en` for English. `es` for Spanish. This is English by default. -3. Copy the contents of `ins.env.example` over to a new file called `ins.env`, and keep it in mind for when you're asked to fill out the institutions table. The `makefile` has a command to speed up this process. ## Installation diff --git a/Makefile b/Makefile index b24ccb9c..a9f30eaa 100644 --- a/Makefile +++ b/Makefile @@ -12,8 +12,8 @@ start: migrate: docker compose -f docker-compose.nginx.yml run php php bin/console doctrine:migrations:migrate -# stop the containers -stop: +# Down the containers +down: docker compose -f docker-compose.nginx.yml down # clear the Symfony cache