NEW RELEASE
This commit is contained in:
@@ -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!
|
||||
|
||||
@@ -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); }
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user