Compare commits
2 Commits
202406.15.
...
0421b38789
Author | SHA1 | Date | |
---|---|---|---|
0421b38789 | |||
89dd222381
|
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
|
||||
|
||||
...
|
52
.gitea/workflows/build-image.yml
Normal file
52
.gitea/workflows/build-image.yml
Normal file
@@ -0,0 +1,52 @@
|
||||
name: Build an image to deploy website
|
||||
|
||||
on:
|
||||
# Runs on pushes targeting the default branch
|
||||
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 }}'
|
@@ -2,9 +2,12 @@
|
||||
title: Chill
|
||||
subtitle: Logiciel d'accompagnement social
|
||||
|
||||
theme: night
|
||||
|
||||
css:
|
||||
- https://www.unpkg.com/fork-awesome@1.2.0/css/fork-awesome.min.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
|
||||
|
||||
|
||||
# 3 Concepts
|
||||
# 3 Univers
|
||||
|
||||
## 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
|
||||
|
||||
|
||||
## Accompagnement à la configuration
|
||||
|
||||
Définition des problématiques, des actions, …
|
||||
@@ -203,19 +207,37 @@ Préférence Kubernetes
|
||||
|
||||
## Formation
|
||||
|
||||
- d'utilisateurs;
|
||||
- de formateurs;
|
||||
|
||||
## Suivi
|
||||
|
||||
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€;
|
||||
- hébergement annuel:
|
||||
## Démarrage
|
||||
|
||||
+/- 30 000€
|
||||
De 50 000€ à 120 000€;
|
||||
|
||||
- réunion mensuelle,
|
||||
- participation à la maintenance,
|
||||
- +/- 400 utilisateurs
|
||||
Selon besoins d'intégration:
|
||||
|
||||
- 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