feat(database): Implement DatabaseManager for managing database structure and initialization
All checks were successful
SSH Backend Deploy / ssh-deploy (push) Successful in 1m51s
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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user