From e88a4b9707907289dd00e0d880a63028a45fb661 Mon Sep 17 00:00:00 2001 From: Mohamed-Hacene <90701924+Mohamed-Hacene@users.noreply.github.com> Date: Mon, 25 Sep 2023 13:18:57 +0200 Subject: [PATCH 1/3] docs: update git repo link in README --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index 800a454..e954971 100644 --- a/readme.md +++ b/readme.md @@ -37,7 +37,7 @@ By default, Django secret key is generated randomly at each start of Mira. This 0. Clone the repository ```sh -git clone git@github.com:intuitem/mira.git +git clone git@github.com:intuitem/mira-community.git cd mira ``` @@ -121,7 +121,7 @@ docker run --rm -p 8000:8000 -v ./db:/code/db mira:3.0.2 1. Clone the repository. ```sh -git clone git@github.com:intuitem/mira.git +git clone git@github.com:intuitem/mira-community.git cd mira ``` From bb822efff0a1822e0cb8d0674e0d4b806b3b95c3 Mon Sep 17 00:00:00 2001 From: Mohamed-Hacene <90701924+Mohamed-Hacene@users.noreply.github.com> Date: Mon, 25 Sep 2023 13:21:45 +0200 Subject: [PATCH 2/3] fix: typo in README --- readme.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/readme.md b/readme.md index e954971..90fe5de 100644 --- a/readme.md +++ b/readme.md @@ -38,7 +38,7 @@ By default, Django secret key is generated randomly at each start of Mira. This ```sh git clone git@github.com:intuitem/mira-community.git -cd mira +cd mira-community ``` #### Using Python @@ -122,7 +122,7 @@ docker run --rm -p 8000:8000 -v ./db:/code/db mira:3.0.2 ```sh git clone git@github.com:intuitem/mira-community.git -cd mira +cd mira-community ``` 2. Create a file in the parent folder (e.g. ../myvars) and store your environment variables within it by copying and modifying the following code and replace `""` by your private values. Take car not to commit this file in your git repo. From 83e8212bec4db3baba61965c91698aa200763bd9 Mon Sep 17 00:00:00 2001 From: Mohamed-Hacene <90701924+Mohamed-Hacene@users.noreply.github.com> Date: Mon, 25 Sep 2023 13:46:17 +0200 Subject: [PATCH 3/3] fix: superuser creation docker section --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 90fe5de..f4e725d 100644 --- a/readme.md +++ b/readme.md @@ -102,7 +102,7 @@ docker build . -t mira:3.0.2 3. Once this is done, you can simply start-up MIRA by running: ```sh -docker run --rm -it --env CREATE_SUPERUSER -p 8000:8000 -v ./db:/code/db mira:3.0.2 +docker run --rm -it --env CREATE_SUPERUSER=true -p 8000:8000 -v ./db:/code/db mira:3.0.2 ``` When asked for, enter your email and password for your superuser.