A Django app that allows tracking government plans. Deployed at: https://fragdenstaat.de/koalitionstracker/
Requires GDAL/Geos for GeoDjango.
# Start a Postgres server with Postgis
docker compose up -d
# Setup virtualenv
python3 -m venv .venv
source .venv/bin/activate
# Install dependencies
pip install -e git+https://github.com/okfde/froide.git@main#egg=froide
pip install -e .
# Setup initial database
./manage.py migrate
# Create admin user
./manage.py createsuperuser
# Start development server
./manage.py runserver
project
directory as a blueprint for an app that uses this repo as a depdency.