This is a dummy django project using geodjango, following the structure proposed in this django best practices guide from Lincoln Loop.
This project includes bootstrap less files, which are compiled into css via django-compressor and nodejs package lessc (see lessc ). You should install nodejs and lessc from node package manager:
npm install -g less
You will also need an spatial database (see geodjango requirements ).
To configure the project in development:
mkvirtualenv geosample --no-site-packages workon geosample cd path/to/geosample/repository pip install -r requirements.pip pip install -e . cp geosample/settings/local.py.example geosample/settings/local.py python manage.py syncdb python manage.py migrate python manage.py runserver_plus