Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 499 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 499 Bytes

Introduction To Django

A quick and very dirty introduction to Django using a tree location cataloging example web application concept.

Assumes PostgreSQL + GDAL are installed

pip install -r requirements.txt
psql -c "create database treeseeker"
psql treeseeker -c "create extension postgis"
cd treeseeker && python manage.py migrate
python manage.py runserver  # open browser to localhost:8000

see [Introduction to Django.ipynb](Introduction to Django.ipynb) for more information