Skip to content

Commit bcbf447

Browse files
authored
Initial commit
0 parents  commit bcbf447

53 files changed

Lines changed: 1726 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
name: IG issue template
3+
about: Issue template for ANS Implementation Guide
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
## Description du problème
11+
12+
13+
## Fichier•s concerné•s
14+
15+
16+
## Solution proposée

.github/pull_request_template.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
## Description des changements
2+
3+
*
4+
*
5+
6+
## Type de changement
7+
8+
- [ ] Nouveau contenu (profil, extension, page, exemple)
9+
- [ ] Correction (erreur dans un profil, une page, une dépendance)
10+
- [ ] Refactoring (pas de changement fonctionnel)
11+
- [ ] Release
12+
13+
## Checklist
14+
15+
- [ ] `sushi-config.yaml` : `releaseLabel` est bien `ci-build` pour une version en développement
16+
- [ ] `change-log.md` mis à jour
17+
- [ ] La branche est à jour avec `main`
18+
19+
## Preview
20+
21+
https://ansforge.github.io/interop-ig-fhir-[nom repo]/[ajouter_nom_de_la_branche]/ig

.github/workflows/fhir-release.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release IG to IG-website-release
2+
on:
3+
workflow_call:
4+
5+
# Allows you to run this workflow manually from the Actions tab
6+
workflow_dispatch:
7+
jobs:
8+
run-release:
9+
runs-on: ubuntu-latest
10+
container:
11+
image: ghcr.io/ansforge/fhir-ig-builder:latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
with:
15+
path: igSource
16+
- uses: ansforge/IG-workflows@main
17+
with:
18+
repo_ig: "./igSource"
19+
github_page: "true"
20+
github_page_token: ${{ secrets.GITHUB_TOKEN }}
21+
bake: "false"
22+
validator_cli: "false"
23+
generate_testscript: "false"
24+
generate_plantuml : "false"
25+
container_mode: "true"
26+
publish_repo: "ansforge/IG-website-release"
27+
publish_repo_token : ${{ secrets.ANS_IG_API_TOKEN }}
28+
publish_path_outpout : "./IG-website-release/www/ig/fhir"
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Workflow CI-build (GitHub pages)
2+
on:
3+
workflow_call:
4+
push:
5+
workflow_dispatch:
6+
jobs:
7+
run-sushi-tests_gitHubPages:
8+
runs-on: ubuntu-latest
9+
container:
10+
image: ghcr.io/ansforge/fhir-ig-builder:latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
with:
14+
path: igSource
15+
- uses: ansforge/IG-workflows@main
16+
with:
17+
repo_ig: "./igSource"
18+
github_page: "true"
19+
github_page_token: ${{ secrets.GITHUB_TOKEN }}
20+
bake: "false"
21+
validator_cli: "false"
22+
generate_testscript: "false"
23+
generate_plantuml: "false"
24+
container_mode: "true"

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# Temporary folders #
2+
#####################
3+
fsh-generated*
4+
temp*
5+
template*
6+
output*
7+
local-template*
8+
9+
# Ignore large files and frequently changed files in input-cache #
10+
##################################################################
11+
input-cache*
12+
13+
# OS generated files #
14+
######################
15+
Thumbs.db
16+
.DS_Store
17+
.DS_Store?
18+
19+
# backup files #
20+
################
21+
*.bak
22+
23+
# IDE generated files #
24+
#######################
25+
.vscode
26+
.idea
27+
28+
# Microsoft Office temp files #
29+
###############################
30+
~$*.xlsx
31+
32+
# Automated testing
33+
.classpath
34+
.project
35+
.settings/*
36+
target/*
37+
.mvn/wrapper/maven-wrapper.jar
38+
39+
/translations/*

.markdownlint.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"default": true,
3+
"MD004": { "style": "dash" },
4+
"MD013": false,
5+
"MD033": false,
6+
"MD041": false,
7+
"MD060": false
8+
}

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022 Github de l'Agence du Numérique en Santé (ANS)
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
[A MODIFIER : remplacer avec votre logo s'il ne s'agit pas d'un projet CI-SIS]
2+
3+
![Logo_LEF_CI-SIS](https://user-images.githubusercontent.com/48218773/227532484-eff82649-4e42-49c6-966a-dc3ea78cf59c.png)
4+
5+
[A MODIFIER : adapter au lien du projet]
6+
7+
[![Workflow Init](https://github.com/ansforge/IG-fhir-partage-de-documents-de-sante/actions/workflows/fhir-workflows.yml/badge.svg)](https://github.com/ansforge/IG-fhir-partage-de-documents-de-sante/actions/workflows/fhir-workflows.yml)
8+
9+
Cet exemple d'Implementation Guide (IG) très simplifié sert de base pour le développement de nouveaux guides d'implémentation. La démarche d'élaboration d'un nouvel IG est expliquée dans le [wiki de ce repo](https://github.com/ansforge/IG-modele/wiki).
10+
Le README ci-dessous constitue un template à adapter et compléter pour chaque projet.
11+
12+
# Contexte
13+
14+
## Contexte métier du projet
15+
16+
[A COMPLETER : doit contenir la description fonctionnelle du projet destinée à un profil non technique]
17+
18+
## Contexte technique du projet
19+
20+
[A COMPLETER : doit expliquer brièvement quelles ressources / profils sont utilisés, exemple implémentation où IG est utilisé]
21+
22+
# CI/CD
23+
24+
Les workflows associés à ce repository (.github/workflows) permettent :
25+
26+
* D'executer Sushi pour vérifier la grammaire
27+
* De faire les tests avec le validator_cli
28+
* De publier les pages : https://ansforge.github.io/{nom du repo}/{nom de la branche}/ig
29+
30+
# Notes
31+
32+
Ce repo "IG-modele" a été créé à partir du repo [sample-ig](https://github.com/FHIR/sample-ig) de l'organisation GitHub FHIR.
33+
34+
[A COMPLETER: notes supplémentaires pour le lecteur de la spec]
35+
Un commentaire ? Une remarque ? Utilisez les GitHub [issues](https://docs.github.com/fr/issues) pour indiquer vos propositions d'amélioration et de correction.
36+
37+
## Acronymes
38+
39+
* IG : Implementation Guide
40+
* FHIR : Fast Healthcare Interoperability Resources
41+
* HL7 : Health Level Seven
42+
43+
[A COMPLETER : acronymes utilisés dans le cadre de ce projet]

0 commit comments

Comments
 (0)