https://github.com/pacificclimate/station-data-portal
Data portal for station data (e.g., BC Station Data, a.k.a. PCDS; Yukon-NWT Station Data); React app
https://github.com/pacificclimate/station-data-portal
actions docker
Last synced: 5 months ago
JSON representation
Data portal for station data (e.g., BC Station Data, a.k.a. PCDS; Yukon-NWT Station Data); React app
- Host: GitHub
- URL: https://github.com/pacificclimate/station-data-portal
- Owner: pacificclimate
- Created: 2018-07-30T23:25:47.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-25T19:07:19.000Z (over 1 year ago)
- Last Synced: 2025-03-25T19:40:12.238Z (over 1 year ago)
- Topics: actions, docker
- Language: JavaScript
- Homepage:
- Size: 7 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
Awesome Lists containing this project
README
# Station Data Portal
Frontend for visualizing and selecting stations, and downloading station
data from a
[PyCDS](https://github.com/pacificclimate/pycds) / CRMP schema database.
## Documentation
- [Functionality](docs/developer/functionality.md)
- [Dependencies](docs/developer/dependencies.md)
- [Installation](docs/developer/installation.md)
- [Configuration](docs/developer/configuration.md)
- [Development and testing](docs/developer/development.md)
- [Production](docs/developer/production.md)
- [User documentation](docs/developer/user-doc.md)
## Releasing
To create a versioned release:
1. Increment `version` in `package.json`
2. Summarize the changes from the last version in `NEWS.md`
3. Commit these changes, then tag the release:
```bash
git add package.json 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
```
**Note**: When a new release of this portal is deployed, also create a new
release of the PDP and deploy it. This will cause the updated documentation
for this portal to be included in the PDP
documentation. For more details, see [User documentation](docs/developer/user-doc.md).