Centralizes all GM controls—add, update, delete player, set RP or renown, reset player passwords—into the PlayerTab for a more intuitive workflow. Removes GM panel logic and duplication from the shop view, clarifies GM access, and improves error feedback on player list loading. Adds a backend health check endpoint and minor UI polish.
15 lines
224 B
JavaScript
15 lines
224 B
JavaScript
module.exports = {
|
|
apps: [
|
|
{
|
|
name: 'deathwatch-server',
|
|
script: './server.js',
|
|
cwd: __dirname,
|
|
watch: false,
|
|
env: {
|
|
NODE_ENV: 'production',
|
|
PORT: 5000
|
|
}
|
|
}
|
|
]
|
|
};
|