Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion backend/runner.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/bash
node --enable-source-maps dist/main.js &
node --enable-source-maps dist/src/main.js &
Copy link

Copilot AI Dec 9, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The path is being updated to dist/src/main.js in this file, but backend/package.json line 23 still references node dist/main in the start:prod script. These paths should be consistent. Consider updating the start:prod script to "start:prod": "node dist/src/main" for consistency.

Copilot uses AI. Check for mistakes.
nginx -g "daemon off;" &
wait -n
exit $?
Loading