Reformat command line options block

This commit is contained in:
Roland Geider
2020-09-04 15:39:50 +02:00
parent 68573bd3ef
commit a57e74b2a1

View File

@@ -79,26 +79,22 @@ python manage.py runserver
```
## Command line options
### Command line options
You can get a list of all available commands by calling ``wger`` without any
arguments:
```
Available tasks:
bootstrap Performs all steps necessary to bootstrap the
application
config-location Returns the default location for the settings file
and the data folder
create-or-reset-admin Creates an admin user or resets the password for an
existing one
create-settings Creates a local settings file
load-fixtures Loads all fixtures
migrate-db Run all database migrations
start Start the application using django's built in webserver
```
* `bootstrap` Performs all steps necessary to bootstrap the application
* `config-location` Returns the default location for the settings file
and the data folder
* `create-or-reset-admin` Creates an admin user or resets the password
for an existing one
* `create-settings` Creates a local settings file
* `load-fixtures` Loads all fixtures
* `migrate-db` Run all database migrations
* `start` Start the application using django's built in webserver
You can also get help on a specific command with ``wger <command> --help``.
To get help on a specific command: ``wger <command> --help``.
## Contact