mirror of
https://github.com/bspeice/Melodia
synced 2025-07-05 07:54:44 -04:00
11 lines
250 B
Python
Executable File
11 lines
250 B
Python
Executable File
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "Melodia.settings")
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|