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"