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

15 lines
420 B
Python
Raw Normal View History

2013-02-28 18:10:20 +04:00
#!/usr/bin/env python
# Copyright (c) 2013 AnsibleWorks, Inc.
# All Rights Reserved.
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',
'ansibleworks.settings.development')
from ansibleworks import manage
2013-05-03 08:14:14 +04:00
manage()