update pour test

This commit is contained in:
cangui 2024-10-14 19:40:59 +02:00
parent 3bdd278b39
commit a7ba884c0c
2 changed files with 2 additions and 2 deletions

2
app.js
View File

@ -6,7 +6,7 @@ const mangaRoutes = require('./routes/mangaRoutes');
require('dotenv').config(); require('dotenv').config();
const app = express(); const app = express();
const PORT = process.env.PORT || 3001; const PORT = process.env.PORT || 3000;
app.use(express.json()); app.use(express.json());
app.use('/', mangaRoutes); app.use('/', mangaRoutes);

View File

@ -3,5 +3,5 @@ services:
web: web:
build: . build: .
ports: ports:
- "3001:3000" - "3000"
restart: always restart: always