authentication fix

This commit is contained in:
2026-01-31 11:32:31 -06:00
parent 1d10863887
commit 9ca490075b
8 changed files with 77 additions and 54 deletions
+22
View File
@@ -1,3 +1,25 @@
# 🚀 TasGrid Server Management
This project uses **PM2** (via Bun) to stay online 24/7. The app runs on port `4000` and is managed by the scripts in `package.json`.
## 🛠 Quick Commands
| Action | Command | Description |
| :--- | :--- | :--- |
| **Check Status** | `bun status` | See if the site is online/how much memory it's using. |
| **Update Site** | `bun deploy` | Pulls latest code, builds, and restarts the server. |
| **Stop Server** | `bun stop` | Shuts down the site (use for maintenance). |
| **View Logs** | `bun logs` | See real-time errors or console output (Ctrl+C to exit). |
## 🔄 Deployment Workflow
To push new changes live, simply run:
```bash
bun deploy
## Usage
```bash