https://github.com/pacificclimate/wx-files-service
https://github.com/pacificclimate/wx-files-service
actions docker snyk
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pacificclimate/wx-files-service
- Owner: pacificclimate
- Created: 2020-08-19T23:31:05.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2025-08-06T22:41:49.000Z (11 months ago)
- Last Synced: 2025-08-06T23:14:46.553Z (11 months ago)
- Topics: actions, docker, snyk
- Language: Python
- Homepage:
- Size: 195 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
Awesome Lists containing this project
README
# Wx Files Service
Metadata and data service for Wx Files.
Main client is the Wx Files App, but this service stands independent of
that app.
This microservice provides
- metadata describing the available weather files
- contents of the available weather files (as file downloads)
## Documentation
- [Installation](docs/installation.md)
- [API](docs/api.md)
- [Configuration](docs/configuration.md)
- [Production deployment](docs/production.md)
- [Creating and populating Wx-Files databases](docs/database.md)
- [Development](docs/development.md)
- [Testing](docs/testing.md)
## Releasing
1. Increment `version` in `pyproject.toml`
2. Summarize the changes since the last version in `NEWS.md`
3. Commit these changes, then tag the release and push to github:
```bash
git add pyproject.toml 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
```