Files @ 46c50ec0b192
Branch filter:

Location: website/www/manage.py

Bradley M. Kuhn
Copyleft Compliance: Minor rewrite of strategy & firmware liberation

This rewrite should improve the stand-alone nature of these documents
and allow for better integration with other summary text and
announcements on the website.

Note that they have now drifted heavily from the original formulation
of the items as grant proposals.
#!/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)