https://github.com/pacificclimate/plan2adapt-v2
Plan2Adapt in React, driven by CMIP5/6 backend
https://github.com/pacificclimate/plan2adapt-v2
actions docker snyk
Last synced: 5 months ago
JSON representation
Plan2Adapt in React, driven by CMIP5/6 backend
- Host: GitHub
- URL: https://github.com/pacificclimate/plan2adapt-v2
- Owner: pacificclimate
- Created: 2019-01-07T23:38:39.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2025-08-18T19:31:59.000Z (10 months ago)
- Last Synced: 2025-08-18T21:27:35.063Z (10 months ago)
- Topics: actions, docker, snyk
- Language: JavaScript
- Homepage:
- Size: 5.19 MB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 33
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
Awesome Lists containing this project
README
# Plan2Adapt Version 2


Plan2Adapt Version 2 is an updated and improved version of the original
[Plan2Adapt v1](https://pacificclimate.org/analysis-tools/plan2adapt).
## Documentation
- [Goals and product requirements](docs/goals-and-product-requirements.md)
- [Installation](docs/installation.md)
- [Configuration](docs/configuration.md)
- [Development](docs/development.md)
- [Build Process](docs/build.md)
- [Production](docs/production.md)
- [Developer notes](docs/developer-notes.md)
## Releasing
To create a release version:
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
```