feat(database): Implement DatabaseManager for managing database structure and initialization
All checks were successful
SSH Backend Deploy / ssh-deploy (push) Successful in 1m51s

feat(routes): Add camera, image, measurement, project, and video routes with Swagger documentation

feat(services): Create storageService and videoService for file management and video processing

fix(errorHandler): Enhance error handling with standardized responses and database operation wrappers
This commit is contained in:
2025-04-27 01:02:33 +02:00
parent 792bdca965
commit 4513af3aa0
30 changed files with 3006 additions and 763 deletions

View File

@@ -1,10 +1,9 @@
module.exports = {
apps: [{
name: "backend",
script: "server.js",
out_file: "/dev/stdout",
error_file: "/dev/stderr",
log_date_format: "YYYY-MM-DD HH:mm:ss",
combine_logs: true, // Combine les logs stdout et stderr
}]
};
/**
* Ce fichier de configuration est maintenu pour compatibilité
* mais redirige vers notre nouvelle architecture centralisée.
* À terme, toutes les références à ce fichier devraient être remplacées
* par des importations directes de src/config/index.js
*/
const config = require('./src/config');
module.exports = config;