Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use Vespa-DB as application name #245

Merged
merged 1 commit into from
Nov 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 404.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VespaDB</title>
<title>Vespa-Watch</title>
</head>

<body>
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VespaDB</title>
<title>Vespa-Watch</title>
</head>

<body>
Expand Down
2 changes: 1 addition & 1 deletion vespadb/observations/admin.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""VespaDB Observations admin module."""
"""Vespa-DB Observations admin module."""

import json
import logging
Expand Down
2 changes: 1 addition & 1 deletion vespadb/observations/urls.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions vespadb/urls.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""Vespadb urls."""
"""Vespa-DB urls."""

from django.conf import settings
from django.conf.urls.static import static
Expand All @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions vespadb/users/apps.py
Original file line number Diff line number Diff line change
@@ -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"
Loading