The Station Data Portal Backend is a microservice providing metadata from a PyCDS database. The nominal client is the Station Data Portal app, but it is not particularly tuned to this app.
At present, this service provides only metadata. Data download services are provided by an instance of the PDP backend.
- API Design
- Configuration
- Production
- Development
- Release history
To create a versioned release:
- Increment
version
inpyproject.toml
. - Summarize the changes from the last release in
NEWS.md
. - Add, commit, and tag, and push these changes:
git add setup.py NEWS.md git commit -m "Bump to version x.x.x git tag -a -m "x.x.x" x.x.x git push --follow-tags