No description
Find a file
2024-09-16 17:26:29 +02:00
froide_govplan ♻️ add BreadcrumbView class to govplan views 2024-07-15 13:31:50 +02:00
project Add more descriptions for setup 2023-02-03 17:13:59 +01:00
.gitignore Add basic project setup files 2023-02-03 15:43:58 +01:00
.pre-commit-config.yaml 🔧 upgrade tooling, use pyproject.toml 2024-09-16 17:26:29 +02:00
docker-compose.yml Add basic project setup files 2023-02-03 15:43:58 +01:00
LICENSE Initial commit 2022-02-15 22:18:19 +01:00
manage.py Add basic project setup files 2023-02-03 15:43:58 +01:00
MANIFEST.in Initial commit 2022-02-15 22:18:19 +01:00
pyproject.toml 🔧 upgrade tooling, use pyproject.toml 2024-09-16 17:26:29 +02:00
README.md Unpin froide dependency in setup.py 2023-02-03 17:42:27 +01:00

Froide GovPlan

A Django app that allows tracking government plans. Deployed at: https://fragdenstaat.de/koalitionstracker/

Install stand-alone

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
  1. Go to http://localhost:8000/admin/
  2. Setup a homepage in the CMS: http://localhost:8000/admin/cms/page/
  3. Setup a page (could be the homepage) and then choose under advanced setting the Govplan app as application.
  4. Publish that page
  5. Setup a government and plans via the admin.

Possible next steps

  • Use the project directory as a blueprint for an app that uses this repo as a depdency.
  • Setup djangocms-text-ckeditor, djangocms-frontend and other CMS components/
  • Use Django apps for social authentication.
  • Override templates in your custom project.