Add frontend

This commit is contained in:
pratik
2025-10-23 08:10:15 -05:00
parent 23dacdd0c2
commit c35cd7092a
28 changed files with 2243 additions and 4 deletions

View File

@@ -207,12 +207,29 @@ done
```
**For more details, see:**
- `deploy-chunked.sh` - Complete working script
- `deploy-chunked.sh` - Direct nginx deployment with cert/headers
- `deploy-chunked-simple.sh` - Java proxy deployment with Base64 encoding
- **`DEPLOYMENT_SCRIPTS.md`** - **Comprehensive guide for both deployment scripts** ⭐
- `CHUNKED_UPLOAD_GUIDE.md` - Detailed API documentation
- `TIMEOUT_SOLUTION.md` - Architecture and design details
- `CHUNK_SIZE_GUIDE.md` - Chunk size recommendations
- `MEMORY_FIX.md` - JVM memory configuration for Tanzu
### Two Deployment Scripts: Which One to Use?
We provide **two deployment scripts** for different network configurations:
| Script | Use When | Features |
|--------|----------|----------|
| **deploy-chunked.sh** | Direct access to nginx | Multipart uploads, cert/key support, custom headers |
| **deploy-chunked-simple.sh** | Through Java proxy | Base64 encoded uploads, proxy adds cert/headers |
**📖 See [DEPLOYMENT_SCRIPTS.md](DEPLOYMENT_SCRIPTS.md) for detailed comparison, troubleshooting, and technical explanations.**
**Quick Decision Guide:**
- ✅ Use `deploy-chunked.sh` if you have direct nginx access and need to provide certificates/headers
- ✅ Use `deploy-chunked-simple.sh` if you go through a Java proxy that adds authentication automatically
---
### 2. List Applications