Skip to content

Commit ad4b959

Browse files
committed
better readme
1 parent 1b6c9d5 commit ad4b959

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Install docker from [here](https://docs.docker.com/engine/install/).
3939
## Setup Redis
4040

4141
```
42-
docker run -p 6379:6379 -d redis:5
42+
sudo docker run -p 6379:6379 -d redis:5
4343
```
4444

4545
## Build Virtual Environment
@@ -58,20 +58,20 @@ pip install -r requirements.txt
5858
## Migrate Models
5959

6060
```
61-
python manage.py makemigrations chat
62-
python manage.py migrate
61+
python3 manage.py makemigrations chat
62+
python3 manage.py migrate
6363
```
6464

6565
## Add Super User
6666

6767
```
68-
python manage.py createsuperuser
68+
python3 manage.py createsuperuser
6969
```
7070

7171
## Collect Static
7272

7373
```
74-
python manage.py collectstatic
74+
python3 manage.py collectstatic
7575
```
7676

7777
## Test Project
@@ -82,13 +82,13 @@ then copy `chromedriver` <b>binary</b> file in `env/bin/` path
8282
## Run Test
8383

8484
```
85-
python manage.py test
85+
python3 manage.py test
8686
```
8787

8888
## Run Server
8989

9090
```
91-
python manage.py runserver
91+
python3 manage.py runserver
9292
```
9393

9494
## Open On Browser

0 commit comments

Comments
 (0)