@@ -38,7 +38,7 @@ Also has some features' customization:
3838
3939In your terminal for ** Unix** (Linux/Mac)
4040
41- ``` sh
41+ ``` shell
4242pip install virtualenv
4343
4444git clone https://github.com/101t/django-aio --depth 1
@@ -53,12 +53,16 @@ pip install -r requirements.txt
5353
5454cp sample.env .env
5555
56+ python manage.py migrate
57+
58+ python manage.py load_new
59+
5660python manage.py runserver
5761```
5862
5963In Command Prompt for ** Windows**
6064
61- ``` sh
65+ ``` shell
6266python -m pip install virtualenv
6367
6468git clone https://github.com/101t/django-aio --depth 1
@@ -73,12 +77,16 @@ pip install -r requirements.txt
7377
7478copy sample.env .env
7579
80+ python manage.py migrate
81+
82+ python manage.py load_new
83+
7684python manage.py runserver
7785```
7886
7987Or using as new project templates
8088
81- ``` sh
89+ ``` shell
8290django-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
9199Adding translation made easy by this commands
92100
93- ``` sh
101+ ``` shell
94102cd django-aio/main/
95103
96104django-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
104112msgunfmt [django.mo] > [django.po]
105113```
106114
107115### Run Celery
108116
109117To run your celery in development
110- ``` sh
118+ ``` shell
111119make run_celery
112120```
113121
114122### Run Django
115123To run django in development as ` HTTP `
116- ``` sh
124+ ``` shell
117125make run
118126```
119127
0 commit comments