- Initialisation du projet Nuxt.js - Configuration de DaisyUI pour le design system - Fichiers de configuration (package.json, nuxt.config.ts, tsconfig.json) - Structure des dossiers publics et assets - Documentation README et variables d'environnement
24 lines
643 B
Plaintext
24 lines
643 B
Plaintext
# Configuration de l'API backend
|
|
NUXT_PUBLIC_API_BASE_URL=http://localhost:3000/api
|
|
|
|
# Configuration du serveur de développement
|
|
NUXT_PUBLIC_APP_URL=http://localhost:3001
|
|
NUXT_PUBLIC_APP_NAME="Inventory Management System"
|
|
|
|
# Configuration de l'environnement
|
|
NODE_ENV=development
|
|
NUXT_APP_ENV=development
|
|
|
|
# Configuration des fonctionnalités
|
|
NUXT_PUBLIC_ENABLE_DEBUG=true
|
|
NUXT_PUBLIC_ENABLE_ANALYTICS=false
|
|
|
|
# Configuration de sécurité (optionnel)
|
|
NUXT_PUBLIC_CSRF_TOKEN=your-csrf-token-here
|
|
|
|
# Configuration des logs
|
|
NUXT_PUBLIC_LOG_LEVEL=debug
|
|
|
|
# Configuration des timeouts
|
|
NUXT_PUBLIC_API_TIMEOUT=30000
|
|
NUXT_PUBLIC_REQUEST_TIMEOUT=10000 |