mirror of
https://github.com/suitenumerique/docs
synced 2026-04-21 13:37:20 +00:00
14 lines
363 B
Python
14 lines
363 B
Python
#!/usr/bin/env python
|
|
"""
|
|
publish's sandbox management script.
|
|
"""
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "publish.settings")
|
|
os.environ.setdefault("DJANGO_CONFIGURATION", "Development")
|
|
|
|
from configurations.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|