From e62abfc1a6f5676ed17691166ed9f3211f2582d9 Mon Sep 17 00:00:00 2001 From: Peter Desmet Date: Sun, 24 Nov 2024 16:38:20 +0100 Subject: [PATCH] Use Vespa-DB as application name (#245) - HTML title can be Vespa-Watch - Lowercase name can rename `vespadb` --- 404.html | 2 +- README.md | 6 +++--- index.html | 2 +- vespadb/observations/admin.py | 2 +- vespadb/observations/urls.py | 2 +- vespadb/urls.py | 6 +++--- vespadb/users/apps.py | 4 ++-- 7 files changed, 12 insertions(+), 12 deletions(-) diff --git a/404.html b/404.html index 8f9a578..3d19306 100644 --- a/404.html +++ b/404.html @@ -5,7 +5,7 @@ - VespaDB + Vespa-Watch diff --git a/README.md b/README.md index 12a0689..199f595 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# VespaDB: Asian Hornet Monitoring Application +# Vespa-DB: Asian Hornet Monitoring Application ## Overview -VespaDB is a Django-based application developed for the Vespa-Watch project to monitor and manage the spread of the invasive Asian Hornet (*Vespa velutina*) in Europe. As a part of the effort to protect local fauna and flora, the application enables the collection and management of sightings and eradication efforts. This application serves as a central platform for citizens to report nests, for authorized eradicators to document their actions, and for administrators to manage the data efficiently. +Vespa-DB is a Django-based application developed for the Vespa-Watch project to monitor and manage the spread of the invasive Asian Hornet (*Vespa velutina*) in Europe. As a part of the effort to protect local fauna and flora, the application enables the collection and management of sightings and eradication efforts. This application serves as a central platform for citizens to report nests, for authorized eradicators to document their actions, and for administrators to manage the data efficiently. ## Features @@ -20,7 +20,7 @@ VespaDB is a Django-based application developed for the Vespa-Watch project to m #### load_municipalities Command -This command imports municipality data from a specified Shapefile into the VespaDB database. It is essential for setting up the application's geographic features. +This command imports municipality data from a specified Shapefile into the Vespa-DB database. It is essential for setting up the application's geographic features. Usage: python manage.py load_municipalities diff --git a/index.html b/index.html index 58bf313..7441b90 100644 --- a/index.html +++ b/index.html @@ -5,7 +5,7 @@ - VespaDB + Vespa-Watch diff --git a/vespadb/observations/admin.py b/vespadb/observations/admin.py index 529665f..da09386 100644 --- a/vespadb/observations/admin.py +++ b/vespadb/observations/admin.py @@ -1,4 +1,4 @@ -"""VespaDB Observations admin module.""" +"""Vespa-DB Observations admin module.""" import json import logging diff --git a/vespadb/observations/urls.py b/vespadb/observations/urls.py index 3fa80bf..dfd0462 100644 --- a/vespadb/observations/urls.py +++ b/vespadb/observations/urls.py @@ -1,4 +1,4 @@ -"""vespadb Observations URL Configuration.""" +"""Vespa-DB Observations URL Configuration.""" from django.urls import include, path from rest_framework.routers import DefaultRouter diff --git a/vespadb/urls.py b/vespadb/urls.py index 20ae6ed..7a9459b 100644 --- a/vespadb/urls.py +++ b/vespadb/urls.py @@ -1,4 +1,4 @@ -"""Vespadb urls.""" +"""Vespa-DB urls.""" from django.conf import settings from django.conf.urls.static import static @@ -12,9 +12,9 @@ schema_view = get_schema_view( openapi.Info( - title="VespaDB API Documentation", + title="Vespa-DB API Documentation", default_version="v1", - description="API documentation for VespaDB. This API allows users to manage observations of Vespa velutina nests.", + description="API documentation for Vespa-DB. This API allows users to manage observations of Vespa velutina nests.", contact=openapi.Contact(email="vespawatch@inbo.be"), ), public=True, diff --git a/vespadb/users/apps.py b/vespadb/users/apps.py index 08db459..53aada9 100644 --- a/vespadb/users/apps.py +++ b/vespadb/users/apps.py @@ -1,10 +1,10 @@ -"""VespaDB Users App Configurations.""" +"""Vespa-DB Users App Configurations.""" from django.apps import AppConfig class UsersConfig(AppConfig): - """VespaDB Users App Configurations.""" + """Vespa-DB Users App Configurations.""" default_auto_field = "django.db.models.BigAutoField" name = "vespadb.users"