1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 09:25:10 +03:00
awx/manage.py

11 lines
312 B
Python
Executable File

#!/usr/bin/env python
import os
if __name__ == '__main__':
# Since this manage.py will only be used when running from a source
# checkout, default to using the development settings.
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'lib.settings.development')
from lib import manage
manage()