This commit is contained in:
relikd
2024-07-25 00:09:23 +02:00
commit d0dd4e7925
58 changed files with 1920 additions and 0 deletions

20
README.md Normal file
View File

@@ -0,0 +1,20 @@
# Leerstand
Django app for managing places with json export and a fully-static frontend map.
![Screenshot map overview](screenshot.jpg)
## Deploy
Start container with `docker-compose up -d` and create admin user (first-run):
```sh
docker-compose exec app python manage.py createsuperuser --email ''
```
Optionally, create an initial set of cities:
```sh
docker-compose exec app python manage.py loaddata initial_cities.json
```