Changes between Version 10 and Version 11 of SimpleBashScriptToSetupDevelopmentEnvironment


Ignore:
Timestamp:
Jun 4, 2006, 11:20:06 PM (18 years ago)
Author:
anonymous
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • SimpleBashScriptToSetupDevelopmentEnvironment

    v10 v11  
    11= Simple Bash Script To Setup Development Environment =
     2
     3== Pure Python Script ==
     4{{{
     5#!/bin/sh
     6
     7export DJANGO_PROJECT="$(basename `pwd`)"
     8export PYTHONPATH="$(dirname `pwd`)"
     9export DJANGO_SETTINGS_MODULE="${DJANGO_PROJECT}.settings"
     10
     11./script.py
     12}}}
    213
    314Don't know why the '''sh''' wiki processor ain't workin', maybe the server doesn't have `enscript` installed, so here's a plain and not that neat view of the script:
Back to Top