docs: Update CHANGELOG and README for deployment models and troubleshooting

- Added multi-platform deployment architecture details (Web App, PWA, DApp) to README.md.
- Included comprehensive troubleshooting guides and fix scripts in README.md.
- Enhanced CHANGELOG.md with new features, fixes, and improvements, including TypeScript error resolutions and updated documentation structure.
- Revised development setup instructions in DEV_SETUP.md to reflect changes in script usage and environment variable setup.
This commit is contained in:
defiQUG
2025-11-06 08:09:54 -08:00
parent 513baa15ae
commit 3dc8592b83
34 changed files with 4116 additions and 21 deletions

View File

@@ -30,13 +30,13 @@ This starts:
- Orchestrator (port 8080)
- Webapp (port 3000)
### Option 3: PowerShell Script
### Option 3: Bash Script (WSL/Ubuntu)
```powershell
.\scripts\start-dev.ps1
```bash
./scripts/start-dev.sh
```
Starts both services in separate windows.
Starts both services in background. See [WSL Setup Guide](./WSL_SETUP.md) for setup instructions.
---