Compare commits
4 Commits
202406.15.
...
v1.0.0
Author | SHA1 | Date | |
---|---|---|---|
aab808a1c0
|
|||
62f05b8988
|
|||
0421b38789 | |||
89dd222381
|
3
.changes/1.0.0.md
Normal file
3
.changes/1.0.0.md
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
## 1.0.0 - 2024-09-30
|
||||||
|
### Added
|
||||||
|
* first release with changie
|
6
.changes/header.tpl.md
Normal file
6
.changes/header.tpl.md
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
# Changelog
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
||||||
|
and is generated by [Changie](https://github.com/miniscruff/changie).
|
0
.changes/unreleased/.gitkeep
Normal file
0
.changes/unreleased/.gitkeep
Normal file
26
.changie.yaml
Normal file
26
.changie.yaml
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
changesDir: .changes
|
||||||
|
unreleasedDir: unreleased
|
||||||
|
headerPath: header.tpl.md
|
||||||
|
changelogPath: CHANGELOG.md
|
||||||
|
versionExt: md
|
||||||
|
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
|
||||||
|
kindFormat: '### {{.Kind}}'
|
||||||
|
changeFormat: '* {{.Body}}'
|
||||||
|
kinds:
|
||||||
|
- label: Added
|
||||||
|
auto: minor
|
||||||
|
- label: Changed
|
||||||
|
auto: major
|
||||||
|
- label: Deprecated
|
||||||
|
auto: minor
|
||||||
|
- label: Removed
|
||||||
|
auto: major
|
||||||
|
- label: Fixed
|
||||||
|
auto: patch
|
||||||
|
- label: Security
|
||||||
|
auto: patch
|
||||||
|
newlines:
|
||||||
|
afterChangelogHeader: 1
|
||||||
|
beforeChangelogVersion: 1
|
||||||
|
endOfVersion: 1
|
||||||
|
envPrefix: CHANGIE_
|
36
.drone.yml
36
.drone.yml
@@ -1,36 +0,0 @@
|
|||||||
---
|
|
||||||
kind: pipeline
|
|
||||||
type: docker
|
|
||||||
name: default
|
|
||||||
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: build-presentation
|
|
||||||
image: pandoc/minimal:2.18-alpine
|
|
||||||
commands:
|
|
||||||
- pandoc -t revealjs --resource-path=.:presentation/src/ -s presentation/src/index.md -o presentation/src/index.html
|
|
||||||
- pandoc -t revealjs --resource-path=.:presentation/src/ -s presentation/src/essaimage.md -o presentation/src/essaimage.html
|
|
||||||
|
|
||||||
- name: build-docker-caddy
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
registry: h3m6q87t.gra7.container-registry.ovh.net
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
dockerfile: presentation/Dockerfile
|
|
||||||
context: presentation/
|
|
||||||
repo: h3m6q87t.gra7.container-registry.ovh.net/prez-concept-chill/presentation
|
|
||||||
tag: ${DRONE_TAG:=latest}
|
|
||||||
pull_image: true
|
|
||||||
when:
|
|
||||||
event:
|
|
||||||
- tag
|
|
||||||
|
|
||||||
|
|
||||||
---
|
|
||||||
kind: signature
|
|
||||||
hmac: 77c0bfbc5571bf62138acc8bcf1fdb4abcc1185a5d26b190f7f6db98b2f09e59
|
|
||||||
|
|
||||||
...
|
|
51
.gitea/workflows/build-image.yml
Normal file
51
.gitea/workflows/build-image.yml
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
name: Build an image to deploy website
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- v*
|
||||||
|
|
||||||
|
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
|
pages: write
|
||||||
|
id-token: write
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
# Build jobs
|
||||||
|
build:
|
||||||
|
runs-on: cth-ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Check out repository
|
||||||
|
uses: https://github.com/actions/checkout@v4
|
||||||
|
|
||||||
|
- name: update packages
|
||||||
|
run: apt-get update
|
||||||
|
|
||||||
|
- name: Setup pandoc
|
||||||
|
uses: https://github.com/r-lib/actions/setup-pandoc@v1
|
||||||
|
with:
|
||||||
|
pandoc-version: '3.4'
|
||||||
|
|
||||||
|
- name: Build presentation main
|
||||||
|
run: pandoc -t revealjs --resource-path=.:presentation/src/ -s presentation/src/index.md -o presentation/src/index.html
|
||||||
|
|
||||||
|
- name: Build presentation essaimage
|
||||||
|
run: pandoc -t revealjs --resource-path=.:presentation/src/ -s presentation/src/essaimage.md -o presentation/src/essaimage.html
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: https://github.com/docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Login to registry
|
||||||
|
uses: https://github.com/docker/login-action@v3
|
||||||
|
with:
|
||||||
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
registry: 'h3m6q87t.gra7.container-registry.ovh.net'
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
uses: https://github.com/docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: presentation/
|
||||||
|
push: true
|
||||||
|
tags: 'h3m6q87t.gra7.container-registry.ovh.net/prez-concept-chill/presentation:${{ github.ref_name }}'
|
11
CHANGELOG.md
Normal file
11
CHANGELOG.md
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# Changelog
|
||||||
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
|
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
|
||||||
|
and is generated by [Changie](https://github.com/miniscruff/changie).
|
||||||
|
|
||||||
|
|
||||||
|
## 1.0.0 - 2024-09-30
|
||||||
|
### Added
|
||||||
|
* first release with changie
|
@@ -2,9 +2,12 @@
|
|||||||
title: Chill
|
title: Chill
|
||||||
subtitle: Logiciel d'accompagnement social
|
subtitle: Logiciel d'accompagnement social
|
||||||
|
|
||||||
|
theme: night
|
||||||
|
|
||||||
css:
|
css:
|
||||||
- https://www.unpkg.com/fork-awesome@1.2.0/css/fork-awesome.min.css
|
- https://www.unpkg.com/fork-awesome@1.2.0/css/fork-awesome.min.css
|
||||||
- ./styles.css
|
- ./styles.css
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
||||||
@@ -79,7 +82,7 @@ Le logiciel est utilisable au quotidien par les travailleurs sociaux.
|
|||||||
Composition de ses propres tableaux croisés dynamiques
|
Composition de ses propres tableaux croisés dynamiques
|
||||||
|
|
||||||
|
|
||||||
# 3 Concepts
|
# 3 Univers
|
||||||
|
|
||||||
## La couleur du bandeau diffère
|
## La couleur du bandeau diffère
|
||||||
|
|
||||||
@@ -177,6 +180,7 @@ Réflexion dès le départ sur l'accompagnement au changement
|
|||||||
|
|
||||||
Champs-Libres partenaire de cette réflexion
|
Champs-Libres partenaire de cette réflexion
|
||||||
|
|
||||||
|
|
||||||
## Accompagnement à la configuration
|
## Accompagnement à la configuration
|
||||||
|
|
||||||
Définition des problématiques, des actions, …
|
Définition des problématiques, des actions, …
|
||||||
@@ -203,19 +207,37 @@ Préférence Kubernetes
|
|||||||
|
|
||||||
## Formation
|
## Formation
|
||||||
|
|
||||||
|
- d'utilisateurs;
|
||||||
|
- de formateurs;
|
||||||
|
|
||||||
## Suivi
|
## Suivi
|
||||||
|
|
||||||
Réunion de suivi au moins mensuelle
|
Réunion de suivi au moins mensuelle
|
||||||
|
|
||||||
|
Plate-forme de gestion de ticket
|
||||||
|
|
||||||
## Budgets estimés
|
# Budgets
|
||||||
|
|
||||||
- phase de démarrage: de 50 000€ à 120 000€;
|
## Démarrage
|
||||||
- hébergement annuel:
|
|
||||||
|
|
||||||
+/- 30 000€
|
De 50 000€ à 120 000€;
|
||||||
|
|
||||||
- réunion mensuelle,
|
Selon besoins d'intégration:
|
||||||
- participation à la maintenance,
|
|
||||||
- +/- 400 utilisateurs
|
|
||||||
|
|
||||||
|
- adresses de référence,
|
||||||
|
- paramétrage nécessaire, préparation de documents, problématiques et actions, …
|
||||||
|
- ateliers de prototypage, …
|
||||||
|
- mode Saas / on-premise,
|
||||||
|
|
||||||
|
## Hébergement annuel:
|
||||||
|
|
||||||
|
+/- 30 000€
|
||||||
|
|
||||||
|
- réunion mensuelle,
|
||||||
|
- participation à la maintenance,
|
||||||
|
- +/- 400 utilisateurs
|
||||||
|
|
||||||
|
|
||||||
|
## Formations
|
||||||
|
|
||||||
|
1 350€/jour, dégressif si regroupement des formations.
|
||||||
|
Reference in New Issue
Block a user