Files @ 494880211827
Branch filter:

Location: django-majic-template/project/manage.py

branko
DMT-1: Calculate media and static files root directories automatically. Set the URLs for them to /media/ and /static/. Enable the Django admin app by default.
#!/usr/bin/env python
import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "{{ project_name }}.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)