-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Vespa-DB as application name (#245)
- HTML title can be Vespa-Watch - Lowercase name can rename `vespadb`
- Loading branch information
1 parent
8612ad8
commit e62abfc
Showing
7 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
@@ -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="[email protected]"), | ||
), | ||
public=True, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |