@@ -149,13 +149,19 @@ python manage.py makemigrations
149149python manage.py migrate
150150```
151151
152- #### 7 - Create admin user
152+ #### 7 - Compile translations
153+
154+ ``` bash
155+ python manage.py compilemessages
156+ ```
157+
158+ #### 8 - Create admin user
153159
154160``` bash
155161python manage.py createsuperuser
156162```
157163
158- #### 8 - Install Minio server
164+ #### 9 - Install Minio server
159165
160166Minio is in charge to store files like APK, icons, flow and pcap files.
161167
197203mkdir -p /tmp/exodus-storage
198204```
199205
200- #### 9 - Start Minio
206+ #### 10 - Start Minio
201207
202208``` bash
203209$HOME /minio server /tmp/exodus-storage --console-address :9001
@@ -207,7 +213,7 @@ Minio API is now listening on `9000` port and the browser interface is available
207213at [ http://127.0.0.1:9001 ] ( http://127.0.0.1:9001 ) . Use ` exodusexodus ` as both login
208214and password.
209215
210- #### 10 - Start the εxodus worker and scheduler
216+ #### 11 - Start the εxodus worker and scheduler
211217
212218The εxodus handle asynchronous tasks submitted by the front-end.
213219You have to activate the virtual venv and ` cd ` into the same directory as ` manage.py ` file.
@@ -221,7 +227,7 @@ celery -A exodus.core worker --beat -l debug -S django
221227
222228Now, the εxodus worker and scheduler are waiting for tasks.
223229
224- #### 11 - Start the εxodus front-end
230+ #### 12 - Start the εxodus front-end
225231
226232You have to activate the virtual venv and ` cd ` into the same directory as ` manage.py ` file.
227233
@@ -234,7 +240,7 @@ python manage.py runserver
234240
235241Now browse [ http://127.0.0.1:8000 ] ( http://127.0.0.1:8000 )
236242
237- #### 12 - Import the trackers definitions
243+ #### 13 - Import the trackers definitions
238244
239245Activate the εxodus virtual venv, ` cd ` into the same directory as ` manage.py ` file and execute the following commands:
240246
@@ -245,7 +251,7 @@ python manage.py importtrackers
245251
246252Now, browse [ your tracker list] ( http://127.0.0.1:8000/trackers/ )
247253
248- #### 13 - Get the F-droid index data
254+ #### 14 - Get the F-droid index data
249255
250256An initial F-droid index manual download may be required:
251257
0 commit comments