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

@@ -1,12 +1,20 @@
#!/bin/bash
#############################################################################
# CF Deployer - Chunked Upload Deployment Script
# CF Deployer - Chunked Upload Deployment Script (Direct to nginx)
#
# This script deploys a Java application to Cloud Foundry using chunked
# uploads to bypass nginx size restrictions and async deployment to avoid
# timeout issues.
#
# USE THIS SCRIPT WHEN:
# - You have direct access to nginx endpoint
# - You need to provide client certificates and custom headers
# - You can send multipart/form-data directly
#
# For deployments through a Java proxy, use: deploy-chunked-simple.sh
# For detailed documentation, see: DEPLOYMENT_SCRIPTS.md
#
# Usage:
# ./deploy-chunked.sh
#