test commit

This commit is contained in:
StarAppeal
2024-11-26 02:32:46 +01:00
parent 28d21fbd94
commit 9d1fac9662
2 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"start": "pm2 start dist/index.js --name 'matrix-backend'",
"start-local": "tsc && cross-env NODE_ENV=development node dist/index.js",
"clean": "rimraf dist",
"build": "npm run clean & tsc",
+1
View File
@@ -9,6 +9,7 @@ import {SpotifyTokenGenerator} from "./rest/spotifyTokenGenerator";
const app = express();
const port = process.env.PORT || 3000;
console.log("server startet");
const server = app.listen(port, () => {
console.log(`Server is running on port ${port}`);
});