
packaging still not done, but this will help with it later. Change-Id: Iec976ae732e8943cff52a76655c4ba1e35ebb833
11 lines
265 B
Python
Executable File
11 lines
265 B
Python
Executable File
#!/usr/bin/env python
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == "__main__":
|
|
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "openstack_registration.settings")
|
|
|
|
from django.core.management import execute_from_command_line
|
|
|
|
execute_from_command_line(sys.argv)
|