https://github.com/ansforge/psc-ps-api
API de mise à jour des Professionnels de Santé dans la base de données Sec-PSC
https://github.com/ansforge/psc-ps-api
sec-psc
Last synced: 9 days ago
JSON representation
API de mise à jour des Professionnels de Santé dans la base de données Sec-PSC
- Host: GitHub
- URL: https://github.com/ansforge/psc-ps-api
- Owner: ansforge
- License: apache-2.0
- Created: 2023-09-12T07:57:33.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2026-05-08T09:04:52.000Z (about 1 month ago)
- Last Synced: 2026-05-08T11:11:38.750Z (about 1 month ago)
- Topics: sec-psc
- Language: Java
- Homepage:
- Size: 402 KB
- Stars: 0
- Watchers: 0
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# PS data update API
## Developement
### Distribution history
This ecosystem uses many independant components, some of which live an independant life in distinct repositories.
For each release of `psc-ps-api`, [the psc-compoents' distribution history](https://github.com/ansforge/psc-components/blob/main/DISTRIBUTION.md)
file will need to be updated with the new version, so that we can keep track of compatible component versions,
and go back to a previous working distribution if need be.
### Release procedure
Whenever a version is ready for release, run the following commands on the `main` brnahc (or on the maintenance branch if we're about to issue a production FIX). This should run on any shell, be it `bash`, `cmd` or if needed `gitbash`.
```bash
mvn release:prepare -DautoVersionSubmodules=true -DtagNameFormat=@{version}
git push
git push origin
```
where `` stands for the new version.
Eg to relase `2.0.0` :
```bash
mvn release:prepare -DautoVersionSubmodules=true -DtagNameFormat=@{version}
git push
git push origin 2.0.0
```