Skip to content

Commit 1b70001

Browse files
committed
README.md updated
1 parent 7d7a9e0 commit 1b70001

File tree

1 file changed

+15
-7
lines changed

1 file changed

+15
-7
lines changed

README.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Also has some features' customization:
3838

3939
In your terminal for **Unix** (Linux/Mac)
4040

41-
```sh
41+
```shell
4242
pip install virtualenv
4343

4444
git clone https://github.com/101t/django-aio --depth 1
@@ -53,12 +53,16 @@ pip install -r requirements.txt
5353

5454
cp sample.env .env
5555

56+
python manage.py migrate
57+
58+
python manage.py load_new
59+
5660
python manage.py runserver
5761
```
5862

5963
In Command Prompt for **Windows**
6064

61-
```sh
65+
```shell
6266
python -m pip install virtualenv
6367

6468
git clone https://github.com/101t/django-aio --depth 1
@@ -73,12 +77,16 @@ pip install -r requirements.txt
7377

7478
copy sample.env .env
7579

80+
python manage.py migrate
81+
82+
python manage.py load_new
83+
7684
python manage.py runserver
7785
```
7886

7987
Or using as new project templates
8088

81-
```sh
89+
```shell
8290
django-admin.py startproject --template=https://github.com/101t/django-aio/archive/latest.zip --extension=py,gitignore YOUR_PROJECT_NAME
8391
```
8492

@@ -90,7 +98,7 @@ django-admin.py startproject --template=https://github.com/101t/django-aio/archi
9098

9199
Adding translation made easy by this commands
92100

93-
```sh
101+
```shell
94102
cd django-aio/main/
95103

96104
django-admin makemessages -l en
@@ -99,21 +107,21 @@ django-admin compilemessages
99107
```
100108
> Note: make sure you have `gettext` installed in your `Unix` Environment
101109
102-
```sh
110+
```shell
103111
# using gettext in ubuntu or macOS
104112
msgunfmt [django.mo] > [django.po]
105113
```
106114

107115
### Run Celery
108116

109117
To run your celery in development
110-
```sh
118+
```shell
111119
make run_celery
112120
```
113121

114122
### Run Django
115123
To run django in development as `HTTP`
116-
```sh
124+
```shell
117125
make run
118126
```
119127

0 commit comments

Comments
 (0)