App to organize and search foster animals
Go to file
moanos 70b3ae4bbc
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
docs: fix copyright
2024-11-07 21:23:37 +01:00
docker refactor: make default port 7345 2024-04-13 12:11:14 +02:00
docs docs: fix copyright 2024-11-07 21:23:37 +01:00
src feat: make external site nicer 2024-11-07 13:02:30 +01:00
.dockerignore feat: Add basic docker support 2024-04-13 02:12:37 +02:00
.gitignore feat: Add static conf to test configuration for testing 2024-05-30 11:40:42 +02:00
.woodpecker.yml fix: Use pre-built dockerfile 2024-10-04 16:50:16 +02:00
Dockerfile fix: Build psycopg2 from source, pin python minor version 2024-10-10 14:33:18 +02:00
LICENSE feat: add license file 2024-09-28 01:04:29 +02:00
notfellchen.cfg feat: Add static conf to test configuration for testing 2024-05-30 11:40:42 +02:00
pyproject.toml feat: add pytest as development dependency 2024-10-27 17:55:21 +01:00
README.md feat: Add about_us text 2024-11-07 07:58:17 +01:00

Notfellchen

notfellchen.org ist eine Sammelstelle für Tier-Vermittlungen. Die Idee entstand, da in der deutschsprachigen Rattencommunity ein wilder Mix aus Websites, Foren und Facebookgruppen besteht die Ratten vermitteln. Diese Website soll die bestehende Communities NICHT ersetzten, jedoch ermöglichen, dass Menschen die Ratten aufnehmen wollen Informationen einfach finden und nicht bereits in jeder Gruppe sein müssen.

Wir nehmen Angebote auf die

  • von Rattenhilfen
  • Tierheimen
  • oder Privatpersonen die ihre Haltung aufgeben wollen kommen. Letzteren empfehlen wir den Weg über eine Rattenhilfe, denn so ist die Vertrauensbasis größer.

Rattenhilfen mit denen gute Erfahrungen bestehen werden von uns als "geprüft" markiert.

Wir legen großen Wert darauf, dass hier kommerzielle Angebote keinen Platz haben, genauso nicht erlaubt ist die Vermittlung von Ratten aus geplanten Vermehrungen oder aus Zooladenkäufen die schwanger wurden. Wir wollen Zooladenkäufe in keinem Fall unterstützen und empfehlen hier den Weg über eine Rattenhilfe.

Auch seriöse Züchter*innen können hier nicht vermitteln, das Angebot ist für Ratten, die sonst kein artgerechtes Zuhause finden können.

Commands

Clean up empty locations by re-querying them

nf clean_locations

Populate the database with test data DO NOT USE IN PRODUCTION

nf populate_db

Query location data to debug

nf query_location <query>

Texts

There is a system for customizing texts in Notfellchen. Not every change of a tet should mean an update of the software. But this should also not become a CMS. Therefore, a solution is used where a number of predefined texts per site are supported. These markdown texts will then be included in the site, if defined.

Textcode Location
how_to Index
introduction Index
privacy_statement About
terms_of_service About
imprint About
about_us About
Any rule About

Developer Notes

Because of a wired bug the initial migrations must run two times as the first time the permissions for create_active_adoption_notice are created but can not yet be accessed and on the second time this permission will be added to groups.

Docker

Build latest image

docker build . -t moanos/notfellchen:latest
docker push moanos/notfellchen:latest
docker run -p8000:7345 moanos/notfellchen:latest

Geocoding

Geocoding services (search map data by name, address or postcode) are provided via the Nominatim API, powered by OpenStreetMap data. Notfellchen uses a selfhosted Nominatim instance to avoid overburdening the publicly hosted instance. Due to ressource constraints geocoding is only supported for Germany right now.

ToDos

  • Implement a report that shows the number of location strings that could not be converted into a location
  • Add a management command to re-query location strings to fill location

Maps

The map on the main homepage is powered by Versatiles, and rendered using Maplibre.

Translation

nf makemessages -a

Use a program like gtranslator or poedit to start translations

Permissions

Action Allowed for
Create adoption notice logged-in
Edit adoption notice User that created, Moderator, Admin
Edit animal User that created, Moderator, Admin
Add animal/photo to adoption notice User that created, Moderator, Admin

Celery and KeyDB

Start KeyDB docker container

docker run -d --name keydb -p 6379:6379 eqalpha/keydb

Start worker

 celery -A notfellchen.celery worker

Start beat

 celery -A notfellchen.celery beat