@@ -349,7 +349,7 @@ export DJANGO_SETTINGS_MODULE="egsim.settings_debug";python manage.py migrate eg
349349```
350350And then repopulate the db:
351351``` bash
352- export DJANGO_SETTINGS_MODULE=" egsim.settings_debug" ; python manage.py egsim_init
352+ export DJANGO_SETTINGS_MODULE=" egsim.settings_debug" ; python manage.py egsim-init
353353```
354354
355355Notes:
@@ -377,7 +377,7 @@ To perform a complete db reset:
377377 are others, delete all of them)
378378 - Execute:
379379 ``` bash
380- export DJANGO_SETTINGS_MODULE=" egsim.settings_debug" ; python manage.py makemigrations && python manage.py migrate && python manage.py egsim_init
380+ export DJANGO_SETTINGS_MODULE=" egsim.settings_debug" ; python manage.py makemigrations && python manage.py migrate && python manage.py egsim-init
381381 ```
382382 - ` git add ` the newly created migration file (in dev mode it's
383383 ` egsim/api/migrations/0001_initial.py ` )
@@ -389,7 +389,7 @@ Notes:
389389 - ` makemigrations ` creates the necessary migration file(s) from Python
390390 code and existing migration file(s)
391391 - ` migrate ` re-create the DB via the generated migration file(s)
392- - ` egsim_init ` repopulates the db with eGSIM data
392+ - ` egsim-init ` repopulates the db with eGSIM data
393393
394394
395395## Re-populating the DB
@@ -403,7 +403,7 @@ fixed. The operations are similar but simpler than a complete Db Rest:
403403 - ` egsim/db.sqlite3 `
404404- Execute:
405405 ``` bash
406- export DJANGO_SETTINGS_MODULE=" egsim.settings_debug" ; python manage.py migrate && python manage.py egsim_init
406+ export DJANGO_SETTINGS_MODULE=" egsim.settings_debug" ; python manage.py migrate && python manage.py egsim-init
407407 ```
408408- [ ** Optional** ] most likely (not tested, please check) you need to re-add
409409 the Django admin superuser(s) as explained in the [ admin panel] ( #admin-panel )
@@ -440,7 +440,7 @@ See `egsim/api/management/commands/README.md`.
440440
441441The next two sections will describe how to store
442442new data (regionalizations and flatfiles) that will be
443- made available in eGSIM with the ` egsim_init ` command
443+ made available in eGSIM with the ` egsim-init ` command
444444(see [ Complete DB reset] ( #Complete-DB-reset ) for details)
445445
446446<!--
@@ -469,7 +469,7 @@ made available in eGSIM with the `egsim_init` command
469469 file name that will be used in the API (if missing, defaults to the file
470470 name without extension)
471471
472- - Repopulate all eGSIM tables (command `egsim_init `)
472+ - Repopulate all eGSIM tables (command `egsim-init `)
473473
474474Implemented flatfiles sources (click on the items below to expand)
475475
@@ -507,6 +507,6 @@ Implemented flatfiles sources (click on the items below to expand)
507507 file name that will be used in the API (if missing, defaults to the file
508508 name without extension)
509509
510- - Repopulate all eGSIM tables (command `egsim_init `)
510+ - Repopulate all eGSIM tables (command `egsim-init `)
511511
512512-->
0 commit comments