Files @ 52b676e3dc39
Branch filter:

Location: website/www/manage.py

Bradley M. Kuhn
Substantial update of Member Project Application page.

This page had much out of date material, particularly the timeline
and the types of projects we seek, but also the FAQ section did not
include standard information that we're now regularly giving projects
during intake.

This update attempts to address many of those issues.
#!/usr/bin/env python

import os
import sys

if __name__ == "__main__":
    www_path = os.path.abspath(os.path.dirname(sys.argv[0]))
    if www_path not in sys.path:
        sys.path.append(www_path)

    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "conservancy.settings")

    from django.core.management import execute_from_command_line

    execute_from_command_line(sys.argv)