NEW RELEASE

This commit is contained in:
2026-04-25 15:26:54 +05:00
parent 0aef6df9f4
commit 6de5e63841
2 changed files with 2 additions and 2 deletions

View File

@@ -201,7 +201,7 @@ node server.js
The console will confirm: `[CYPHER-HR] Server active on port 5200` and `[CYPHER-HR] Database connected`.
### Step 6: Initial Setup Wizard
1. Open your web browser and navigate to **`http://localhost:5200`**.
1. Open your web browser and navigate to **`http://0.0.0.0:5200`** (or your server's IP address).
2. Because it is the first time running the system, CYPHER-HR will automatically present the **System Setup Wizard**.
3. Follow the UI prompts to configure your company details and create your Master Administrator account.
4. Log in and begin adding your employees!

View File

@@ -391,7 +391,7 @@ async function start() {
const now = new Date();
if (now.getDate() === 1 && now.getHours() === 0) await resetMonthlyBalances();
}, 3600000);
app.listen(PORT, () => console.log(`CYPHER-HR running on http://localhost:${PORT}`));
app.listen(PORT, '0.0.0.0', () => console.log(`CYPHER-HR running on http://0.0.0.0:${PORT}`));
} catch (err) { console.error('Failed to start:', err); process.exit(1); }
}