This commit is contained in:
paoloar77
2025-02-19 09:52:36 +01:00
parent e06ae7e161
commit cdf598f9a6
2 changed files with 8 additions and 0 deletions

6
src/.env.production Normal file
View File

@@ -0,0 +1,6 @@
DB_HOST_SQLSRVTEST=31.3.180.50
DB_PORT_SQLSRVTEST=14338
DB_DATABASE_SQLSRVTEST=ANAG_MACRO
DB_USERNAME_SQLSRVTEST=woo
DB_PASSWORD_SQLSRVTEST=4n4traPe@
API_KEY=m68yADSr123MIVIDA@154$DSAGVOK

View File

@@ -66,6 +66,8 @@ const PORT = process.env.SERVER_PORT || 3000;
console.log('Avvio del server...');
console.log(`Configurazione: utilizzo della porta ${PORT}`);
console.log(process.env);
app.listen(PORT, () => {
console.log(`Server in ascolto sulla porta ${PORT}`);
});