├── .gitignore ├── README ├── indygo ├── __init__.py ├── cmd.py └── template │ ├── README_tmpl │ ├── __init__.py │ ├── apps │ ├── __init__.py │ ├── core │ │ ├── __init__.py │ │ ├── models.py │ │ ├── tests.py │ │ ├── urls.py │ │ └── views.py │ └── debugsettings │ │ ├── __init__.py │ │ └── models.py │ ├── bootstrap │ ├── __init__.py │ ├── bootstrap.py │ ├── dependencies.txt │ ├── setup_pip_virtualenv.sh │ └── setup_ubuntu_packages.sh │ ├── compass │ ├── config.rb │ └── src │ │ ├── ie.scss │ │ ├── print.scss │ │ └── screen.scss │ ├── dev │ ├── __init__.py │ ├── killsupervisor.py │ ├── runserver.py │ ├── runsupervisor.py │ ├── runwsgi.py_tmpl │ ├── syncdb.py │ └── work │ ├── etc │ ├── nginx │ │ ├── development.conf_tmpl │ │ ├── enable.py_tmpl │ │ └── production.conf_tmpl │ └── supervisor │ │ ├── development.conf │ │ └── production.conf │ ├── fabfile │ └── __init__.py_tmpl │ ├── gitignore │ ├── lib │ ├── __init__.py │ ├── async.py │ └── cmd.py │ ├── manage.py │ ├── media │ └── site │ │ ├── css │ │ ├── ie.css │ │ ├── print.css │ │ └── screen.css │ │ ├── img │ │ ├── bgheader.jpg │ │ ├── flower.gif │ │ └── grid.png │ │ └── js │ │ └── jquery-1.4.2.min.js │ ├── settings │ ├── __init__.py │ ├── common.py_tmpl │ ├── development.py │ └── production.py │ ├── templates │ └── site │ │ ├── base.html │ │ └── index.html │ └── urls.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/.gitignore -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/README -------------------------------------------------------------------------------- /indygo/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/__init__.py -------------------------------------------------------------------------------- /indygo/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/cmd.py -------------------------------------------------------------------------------- /indygo/template/README_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/README_tmpl -------------------------------------------------------------------------------- /indygo/template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indygo/template/apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indygo/template/apps/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indygo/template/apps/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/apps/core/models.py -------------------------------------------------------------------------------- /indygo/template/apps/core/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/apps/core/tests.py -------------------------------------------------------------------------------- /indygo/template/apps/core/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/apps/core/urls.py -------------------------------------------------------------------------------- /indygo/template/apps/core/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/apps/core/views.py -------------------------------------------------------------------------------- /indygo/template/apps/debugsettings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indygo/template/apps/debugsettings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/apps/debugsettings/models.py -------------------------------------------------------------------------------- /indygo/template/bootstrap/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indygo/template/bootstrap/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/bootstrap/bootstrap.py -------------------------------------------------------------------------------- /indygo/template/bootstrap/dependencies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/bootstrap/dependencies.txt -------------------------------------------------------------------------------- /indygo/template/bootstrap/setup_pip_virtualenv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/bootstrap/setup_pip_virtualenv.sh -------------------------------------------------------------------------------- /indygo/template/bootstrap/setup_ubuntu_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/bootstrap/setup_ubuntu_packages.sh -------------------------------------------------------------------------------- /indygo/template/compass/config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/compass/config.rb -------------------------------------------------------------------------------- /indygo/template/compass/src/ie.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/compass/src/ie.scss -------------------------------------------------------------------------------- /indygo/template/compass/src/print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/compass/src/print.scss -------------------------------------------------------------------------------- /indygo/template/compass/src/screen.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/compass/src/screen.scss -------------------------------------------------------------------------------- /indygo/template/dev/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indygo/template/dev/killsupervisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/dev/killsupervisor.py -------------------------------------------------------------------------------- /indygo/template/dev/runserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/dev/runserver.py -------------------------------------------------------------------------------- /indygo/template/dev/runsupervisor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/dev/runsupervisor.py -------------------------------------------------------------------------------- /indygo/template/dev/runwsgi.py_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/dev/runwsgi.py_tmpl -------------------------------------------------------------------------------- /indygo/template/dev/syncdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/dev/syncdb.py -------------------------------------------------------------------------------- /indygo/template/dev/work: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/dev/work -------------------------------------------------------------------------------- /indygo/template/etc/nginx/development.conf_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/etc/nginx/development.conf_tmpl -------------------------------------------------------------------------------- /indygo/template/etc/nginx/enable.py_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/etc/nginx/enable.py_tmpl -------------------------------------------------------------------------------- /indygo/template/etc/nginx/production.conf_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/etc/nginx/production.conf_tmpl -------------------------------------------------------------------------------- /indygo/template/etc/supervisor/development.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/etc/supervisor/development.conf -------------------------------------------------------------------------------- /indygo/template/etc/supervisor/production.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/etc/supervisor/production.conf -------------------------------------------------------------------------------- /indygo/template/fabfile/__init__.py_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/fabfile/__init__.py_tmpl -------------------------------------------------------------------------------- /indygo/template/gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/gitignore -------------------------------------------------------------------------------- /indygo/template/lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indygo/template/lib/async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/lib/async.py -------------------------------------------------------------------------------- /indygo/template/lib/cmd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/lib/cmd.py -------------------------------------------------------------------------------- /indygo/template/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/manage.py -------------------------------------------------------------------------------- /indygo/template/media/site/css/ie.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/media/site/css/ie.css -------------------------------------------------------------------------------- /indygo/template/media/site/css/print.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/media/site/css/print.css -------------------------------------------------------------------------------- /indygo/template/media/site/css/screen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/media/site/css/screen.css -------------------------------------------------------------------------------- /indygo/template/media/site/img/bgheader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/media/site/img/bgheader.jpg -------------------------------------------------------------------------------- /indygo/template/media/site/img/flower.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/media/site/img/flower.gif -------------------------------------------------------------------------------- /indygo/template/media/site/img/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/media/site/img/grid.png -------------------------------------------------------------------------------- /indygo/template/media/site/js/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/media/site/js/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /indygo/template/settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /indygo/template/settings/common.py_tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/settings/common.py_tmpl -------------------------------------------------------------------------------- /indygo/template/settings/development.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/settings/development.py -------------------------------------------------------------------------------- /indygo/template/settings/production.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/settings/production.py -------------------------------------------------------------------------------- /indygo/template/templates/site/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/templates/site/base.html -------------------------------------------------------------------------------- /indygo/template/templates/site/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/templates/site/index.html -------------------------------------------------------------------------------- /indygo/template/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/indygo/template/urls.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/indygemma/indygo/HEAD/setup.py --------------------------------------------------------------------------------