-
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.
- Loading branch information
Thomas Hanke
committed
Nov 22, 2023
1 parent
7afbf6e
commit ab7ecf9
Showing
1 changed file
with
5 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,14 +3,14 @@ | |
|
||
|
||
class Setting(BaseSettings): | ||
name: str = str(os.environ.get("APP_NAME","BaseFastApiApp")) | ||
contact_name: str = str(os.environ.get("ADMIN_NAME","Max Mustermann")) | ||
admin_email: str = str(os.environ.get("ADMIN_MAIL","[email protected]")) | ||
name: str = str(os.environ.get("APP_NAME","RDFConverter")) | ||
contact_name: str = str(os.environ.get("ADMIN_NAME","Thomas Hanke")) | ||
admin_email: str = str(os.environ.get("ADMIN_MAIL","[email protected]")) | ||
items_per_user: int = 50 | ||
version: str = str(os.environ.get("APP_VERSION","v1.1.1")) | ||
version: str = str(os.environ.get("APP_VERSION","v1.1.2")) | ||
config_name: str = str(os.environ.get("APP_MODE","development")) | ||
openapi_url: str ="/api/openapi.json" | ||
docs_url: str = "/api/docs" | ||
source: str = str(os.environ.get("APP_SOURCE","https://example.com")) | ||
source: str = str(os.environ.get("APP_SOURCE","https://github.com/Mat-O-Lab/RDFConverter")) | ||
desc: str = "A service for joining and converting meta data documents based on YARRRML mapping files to RDF, optionally a validiation can be conducted using SHACL Shapes." | ||
org_site: str = "https://mat-o-lab.github.io/OrgSite" |