mirror of
https://github.com/wger-project/wger.git
synced 2026-02-18 00:17:51 +01:00
Instead of a "create-settings" command, which didn't contain all the options and was a bit awkward, we now have specific settings used for different things.
13 lines
272 B
Python
Executable File
13 lines
272 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
# Standard Library
|
|
import os
|
|
import sys
|
|
|
|
# Django
|
|
from django.core.management import execute_from_command_line
|
|
|
|
if __name__ == '__main__':
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings.main")
|
|
execute_from_command_line(sys.argv)
|