mirror of
https://github.com/ansible/awx.git
synced 2024-10-31 15:21:13 +03:00
10 lines
245 B
Python
Executable File
10 lines
245 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
import os
|
|
import sys
|
|
|
|
if __name__ == '__main__':
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'lib.settings')
|
|
from django.core.management import execute_from_command_line
|
|
execute_from_command_line(sys.argv)
|