2019-08-02 11:24:49 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
"""Django's command-line utility for administrative tasks."""
|
2017-06-11 23:34:13 +00:00
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
2019-08-02 11:24:49 +00:00
|
|
|
def main():
|
2019-08-02 11:32:09 +00:00
|
|
|
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'med.settings')
|
2019-08-02 11:24:49 +00:00
|
|
|
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
|
2017-06-11 23:34:13 +00:00
|
|
|
execute_from_command_line(sys.argv)
|
2019-08-02 11:24:49 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|