Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
geomag-algorithms
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ghsc
National Geomagnetism Program
geomag-algorithms
Commits
27d4e140
Commit
27d4e140
authored
3 years ago
by
Cain, Payton David
Browse files
Options
Downloads
Patches
Plain Diff
alphabetize app parameters
parent
01982e9a
No related branches found
No related tags found
2 merge requests
!146
Release CMO metadata to production
,
!111
Custom OpenAPI Titles/Descriptions
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
geomagio/api/secure/app.py
+1
-1
1 addition, 1 deletion
geomagio/api/secure/app.py
geomagio/api/ws/app.py
+1
-1
1 addition, 1 deletion
geomagio/api/ws/app.py
with
2 additions
and
2 deletions
geomagio/api/secure/app.py
+
1
−
1
View file @
27d4e140
...
@@ -12,9 +12,9 @@ from .SessionMiddleware import SessionMiddleware
...
@@ -12,9 +12,9 @@ from .SessionMiddleware import SessionMiddleware
app
=
FastAPI
(
app
=
FastAPI
(
title
=
"
Geomagnetism Metadata Web Service
"
,
description
=
"
Web service for interaction with operational metadata records
"
,
description
=
"
Web service for interaction with operational metadata records
"
,
root_path
=
"
/ws/secure
"
,
root_path
=
"
/ws/secure
"
,
title
=
"
Geomagnetism Metadata Web Service
"
,
)
)
# NOTE: database used for sessions is started by ..app.app,
# NOTE: database used for sessions is started by ..app.app,
...
...
This diff is collapsed.
Click to expand it.
geomagio/api/ws/app.py
+
1
−
1
View file @
27d4e140
...
@@ -23,11 +23,11 @@ VERSION = os.getenv("GEOMAG_VERSION", "version")
...
@@ -23,11 +23,11 @@ VERSION = os.getenv("GEOMAG_VERSION", "version")
app
=
FastAPI
(
app
=
FastAPI
(
title
=
"
Geomagnetism Data Web Service
"
,
description
=
"
Web service for data access and observatory/element information
\n\n
"
description
=
"
Web service for data access and observatory/element information
\n\n
"
+
"
Supports realtime processing via algorithms
"
,
+
"
Supports realtime processing via algorithms
"
,
docs_url
=
"
/docs
"
,
docs_url
=
"
/docs
"
,
root_path
=
"
/ws
"
,
root_path
=
"
/ws
"
,
title
=
"
Geomagnetism Data Web Service
"
,
)
)
app
.
include_router
(
algorithms
.
router
)
app
.
include_router
(
algorithms
.
router
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment