4NK Dev cdf91d453f
All checks were successful
Build and Push to Registry / build-and-push (push) Successful in 47s
ci: docker_tag=dev-test - Centralisation des fichiers CODE_OF_CONDUCT, CODEOWNERS, CONTRIBUTING, LICENSE
2025-10-01 21:05:39 +00:00

39 lines
921 B
Markdown

# Mini Serveur Express
Un mini serveur Express avec une route `/api/ping` qui renvoie "Hello World".
## Installation
```bash
npm install
```
## Démarrage du serveur
```bash
npm start
```
Ou en mode développement avec rechargement automatique :
```bash
npm run dev
```
## Utilisation
Une fois le serveur démarré, la route ping est accessible à :
- http://localhost:3000/api/ping
Cette route renvoie un objet JSON avec le message "Hello World".
## 📋 Fichiers centralisés
Les fichiers suivants sont centralisés dans le dépôt principal `4NK_env` :
- `CODE_OF_CONDUCT.md` - Code de conduite
- `CODEOWNERS` - Propriétaires du code
- `CONTRIBUTING.md` - Guide de contribution
- `LICENSE` - Licence du projet
Voir : [`4NK_env/CODE_OF_CONDUCT.md`](../../CODE_OF_CONDUCT.md), [`4NK_env/CODEOWNERS`](../../CODEOWNERS), [`4NK_env/CONTRIBUTING.md`](../../CONTRIBUTING.md), [`4NK_env/LICENSE`](../../LICENSE)