mirror of
https://github.com/bspeice/Melodia
synced 2024-11-15 20:48:23 -05:00
51a861abe1
Also include code for creating a new secret key per distribution
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)
|