mirror of
https://github.com/ansible/awx.git
synced 2026-01-09 15:02:07 -03:30
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)
|