ci: docker_tag=dev-test - Mise à jour documentation et standardisation
Some checks failed
Docker Build and Push (ext) / build (push) Failing after 53s

This commit is contained in:
4NK CI Bot 2025-10-01 20:57:43 +00:00
parent 1a62a955f5
commit 2d5f731133
5 changed files with 251 additions and 29 deletions

View File

@ -1,10 +1,79 @@
# Cursor ignore file for ihm_client # 4NK Environment - Git Ignore
node_modules/ # ============================
dist/ confs/
*.log # Dossiers de sauvegarde des scripts
.env* **/backup/
.DS_Store **/*backup*
coverage/
build/ **/.cargo/
pkg/
pkg2/ # Fichiers temporaires
**/*.tmp*
**/*.temp*
**/*.log*
**/*.pid*
# Fichiers de configuration locale
**/*.env*
**/*.conf*
**/*.yaml*
**/*.yml*
**/*.ini*
**/*.json*
**/*.toml*
**/*.lock*
# Données et logs
**/*.logs*
**/*.data
*.db
*.sqlite
# Certificats et clés
**/*.key
**/*.pem
**/*.crt
**/*.p12
**/*.pfx
ssl/
certs/
# Docker
**/*.docker*
# Cache et build
**/*.node_modules/
**/*.dist/
**/*build/
**/*target/
**/*.*.o
**/*.so
**/*.dylib
# IDE et éditeurs
**/*.vscode/
**/*.idea/
**/*.swp
**/*.swo
**/*~
# OS
**/*.DS_Store
**/*Thumbs.db
**/*tmp*
# Git
**/*.git/
**/*.orig*
# Backup des projets existants
**/*backup*
**/*wallet*
**/*keys*
**/*node_modules*
**/*cursor*
**/*pid*
**/*next*

View File

@ -1,10 +1,79 @@
.git # 4NK Environment - Git Ignore
node_modules # ============================
.next confs/
coverage # Dossiers de sauvegarde des scripts
dist **/backup/
.DS_Store **/*backup*
npm-debug.log*
yarn-debug.log* **/.cargo/
yarn-error.log*
.env* # Fichiers temporaires
**/*.tmp*
**/*.temp*
**/*.log*
**/*.pid*
# Fichiers de configuration locale
**/*.env*
**/*.conf*
**/*.yaml*
**/*.yml*
**/*.ini*
**/*.json*
**/*.toml*
**/*.lock*
# Données et logs
**/*.logs*
**/*.data
*.db
*.sqlite
# Certificats et clés
**/*.key
**/*.pem
**/*.crt
**/*.p12
**/*.pfx
ssl/
certs/
# Docker
**/*.docker*
# Cache et build
**/*.node_modules/
**/*.dist/
**/*build/
**/*target/
**/*.*.o
**/*.so
**/*.dylib
# IDE et éditeurs
**/*.vscode/
**/*.idea/
**/*.swp
**/*.swo
**/*~
# OS
**/*.DS_Store
**/*Thumbs.db
**/*tmp*
# Git
**/*.git/
**/*.orig*
# Backup des projets existants
**/*backup*
**/*wallet*
**/*keys*
**/*node_modules*
**/*cursor*
**/*pid*
**/*next*

11
.gitignore vendored
View File

@ -1,14 +1,12 @@
# 4NK Environment - Git Ignore # 4NK Environment - Git Ignore
# ============================ # ============================
confs/
# Dossiers de sauvegarde des scripts # Dossiers de sauvegarde des scripts
**/backup/ **/backup/
**/*backup* **/*backup*
**/.cargo/ **/.cargo/
# Fichiers temporaires # Fichiers temporaires
**/*.tmp* **/*.tmp*
**/*.temp* **/*.temp*
@ -75,8 +73,7 @@ certs/
**/*wallet* **/*wallet*
**/*keys* **/*keys*
# Supervisor
supervisor-logs/
**/*node_modules* **/*node_modules*
**/*cursor* **/*cursor*
**/*pid*
**/*next*

View File

@ -52,4 +52,13 @@
## TO DO ## TO DO
### Documentation centralisée ### Documentation centralisée
- Voir `/home/debian/4NK_env/docs/ihm_client/` - Voir `/home/debian/4NK_env/docs/ihm_client/`
## Intégration dans lenvironnement 4NK
`ihm_client` sintègre dans larchitecture 4NK via une iframe et communique avec les services par variables denvironnement (préfixes `VITE_`/`NEXT_PUBLIC_`). Aucune URL de machine ne doit être codée en dur dans la documentation ou les exemples.
Références centrales:
- `docs/DEEP_ARCHITECTURE_ANALYSIS.md`
- `docs/TECHNICAL_REFERENCE.md`
- `docs/DEPLOYMENT_GUIDE.md`

80
pkg/.gitignore vendored
View File

@ -1 +1,79 @@
* # 4NK Environment - Git Ignore
# ============================
confs/
# Dossiers de sauvegarde des scripts
**/backup/
**/*backup*
**/.cargo/
# Fichiers temporaires
**/*.tmp*
**/*.temp*
**/*.log*
**/*.pid*
# Fichiers de configuration locale
**/*.env*
**/*.conf*
**/*.yaml*
**/*.yml*
**/*.ini*
**/*.json*
**/*.toml*
**/*.lock*
# Données et logs
**/*.logs*
**/*.data
*.db
*.sqlite
# Certificats et clés
**/*.key
**/*.pem
**/*.crt
**/*.p12
**/*.pfx
ssl/
certs/
# Docker
**/*.docker*
# Cache et build
**/*.node_modules/
**/*.dist/
**/*build/
**/*target/
**/*.*.o
**/*.so
**/*.dylib
# IDE et éditeurs
**/*.vscode/
**/*.idea/
**/*.swp
**/*.swo
**/*~
# OS
**/*.DS_Store
**/*Thumbs.db
**/*tmp*
# Git
**/*.git/
**/*.orig*
# Backup des projets existants
**/*backup*
**/*wallet*
**/*keys*
**/*node_modules*
**/*cursor*
**/*pid*
**/*next*