loefsys.scripts.django_scripts module

Submodule containing scripts related to Django.

With the available functions, several django-admin functions are accessible.

loefsys.scripts.django_scripts.runserver() None

Boot up Django’s development webserver.

See runserver for more details.

Return type:

None

loefsys.scripts.django_scripts.makemigrations() None

Make migrations based on the changes in the code.

See makemigrations for more details.

Return type:

None

loefsys.scripts.django_scripts.migrate() None

Apply migrations to the database.

See migrate for more details.

Return type:

None

loefsys.scripts.django_scripts.test() None

Run tests for all installed apps.

See test for more details.

Return type:

None

loefsys.scripts.django_scripts.createsuperuser() None

Create an admin user for the database.

See createsuperuser for more details.

Return type:

None

loefsys.scripts.django_scripts.collectstatic() None

Collect all static files in the static folder.

See collectstatic for more details.

Return type:

None