Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.

Commit 09ff59a

Browse files
committed
Make Readme terminal commands compatible with Windows operating system
1 parent ecbd606 commit 09ff59a

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

readme.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@ With docker support.
3030

3131
```bash
3232
cp .env.example .env
33-
pip install virtualenv && \
34-
virtualenv env && \
35-
source env/bin/activate
33+
34+
pip install virtualenv
35+
virtualenv env
36+
source env/bin/activate
37+
3638
python3 manage.py migrate
3739
```
3840

@@ -84,10 +86,7 @@ Admin creds are set in [./compose/local/django/start](https://raw.githubusercont
8486
```bash
8587
export DJANGO_SUPERUSER_PASSWORD=secret
8688

87-
py manage.py createsuperuser \
88-
--username admin_user \
89-
--email admin@django-app.com \
90-
--no-input
89+
py manage.py createsuperuser --username admin_user --email admin@django-app.com --no-input
9190
```
9291

9392
## Cache react app & view templates <a name="cache-templates"></a>

0 commit comments

Comments
 (0)