No description
Find a file
Stefan Wehrmeyer 70ca66ebd5 Add PlaceholderMixin to admin class
recommended by cms check
2023-06-20 12:14:12 +02:00
froide_govplan Add PlaceholderMixin to admin class 2023-06-20 12:14:12 +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 🧑‍💻 Add pre-commit 2022-04-28 15:20:50 +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
README.md Unpin froide dependency in setup.py 2023-02-03 17:42:27 +01:00
setup.cfg Adjust flake8 config 2022-08-11 14:37:11 +01:00
setup.py Upgrade dependency 2023-06-07 21:04:40 +02: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.