source: sicp/manage.py

Last change on this file was 46b845f, checked in by Ing. Roldan D. Vargas G <rvargas@…>, 9 years ago

Creada estructura y diseño del proyecto

  • Property mode set to 100755
File size: 247 bytes
Line 
1#!/usr/bin/env python
2import os
3import sys
4
5if __name__ == "__main__":
6    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "sicp.settings")
7
8    from django.core.management import execute_from_command_line
9
10    execute_from_command_line(sys.argv)
Note: See TracBrowser for help on using the repository browser.