Compare commits
2 Commits
refactor/r
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bdfc417435 | ||
|
|
95d60c1776 |
26
.gitea/workflows/validate.yml
Normal file
@@ -0,0 +1,26 @@
|
||||
name: Validation applicative
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [main, master]
|
||||
paths-ignore:
|
||||
- "**.md"
|
||||
- "docs/**"
|
||||
pull_request:
|
||||
branches: [main, master]
|
||||
paths-ignore:
|
||||
- "**.md"
|
||||
- "docs/**"
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
verify:
|
||||
name: Tests de contrat
|
||||
runs-on: ci-node22
|
||||
timeout-minutes: 5
|
||||
steps:
|
||||
- name: Récupérer les sources
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Vérifier le contrat du portail
|
||||
run: node test/portal-contract.test.js
|
||||
4
.gitignore
vendored
@@ -4,3 +4,7 @@ node_modules/
|
||||
dist/
|
||||
build/
|
||||
.DS_Store
|
||||
# Sauvegardes locales : les versions de référence restent dans Git.
|
||||
*.bak
|
||||
*.bak-*
|
||||
*.tmp
|
||||
|
||||
16
app.json
Normal file
@@ -0,0 +1,16 @@
|
||||
{
|
||||
"id": "portail-santinova",
|
||||
"name": "Portail Applicatif",
|
||||
"category": "INFRA",
|
||||
"urls": {
|
||||
"recette": "https://portail.recette.santinova-soft.org",
|
||||
"prod": "https://portail.santinova-soft.org"
|
||||
},
|
||||
"containerName": "portail-santinova",
|
||||
"image": "images/portail.png",
|
||||
"giteaRepo": "portail-santinova",
|
||||
"giteaOwner": "manus-admin",
|
||||
"ci": {
|
||||
"required": true
|
||||
}
|
||||
}
|
||||
BIN
images/budget-si.png
Normal file
|
After Width: | Height: | Size: 332 KiB |
BIN
images/dashboard.png
Normal file
|
After Width: | Height: | Size: 2.3 MiB |
BIN
images/formation-manager.png
Normal file
|
After Width: | Height: | Size: 183 KiB |
BIN
images/gestion-at.png
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
images/itinova-vehicle-exchange.png
Normal file
|
After Width: | Height: | Size: 308 KiB |
BIN
images/pilotage-ms.png
Normal file
|
After Width: | Height: | Size: 19 KiB |
BIN
images/portail.png
Normal file
|
After Width: | Height: | Size: 24 KiB |
|
Before Width: | Height: | Size: 2.4 MiB After Width: | Height: | Size: 33 KiB |
11
package.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"name": "portail-santinova",
|
||||
"version": "1.0.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"test": "node test/portal-contract.test.js",
|
||||
"check": "echo 'No TypeScript — skip'",
|
||||
"build": "echo 'Static site — no build step'",
|
||||
"verify": "pnpm check && pnpm test && pnpm build"
|
||||
}
|
||||
}
|
||||