server/src/manage.py
author durandn
Thu, 03 Mar 2016 17:06:20 +0100
changeset 11 cfc868991b82
parent 0 71a42c20fc86
permissions -rwxr-xr-x
Added custom user model to store extra data from the GED + corrected signals and api auth class so they interface correctly with the ged

#!/usr/bin/env python
import os
import sys

if __name__ == "__main__":
    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "metaeducation.settings.dev")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)