1
0
Fork 0
mirror of https://github.com/retspen/webvirtcloud synced 2024-11-01 03:54:15 +00:00
webvirtcloud/manage.py

21 lines
631 B
Python
Raw Normal View History

2020-05-26 19:23:57 +00:00
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
2015-02-27 08:53:51 +00:00
import os
import sys
2020-05-26 19:23:57 +00:00
def main():
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'webvirtcloud.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc
2015-02-27 08:53:51 +00:00
execute_from_command_line(sys.argv)
2020-05-26 19:23:57 +00:00
if __name__ == '__main__':
main()