Hi, is there a way to deploy static website contained inside a zip file then extract its content via some special command or request? I am new to Vercel service and not sure how to host a static website using its REST API. So far I can only create project via REST API but not the uploading of its content. After many research I read that each file needs to be sign with SHA. This can be a challenge as the static website contains too many files since it is a JaCoCo report. I was hoping to create a landing page of a project test report and code coverage with Vercel since Glitch IO is no longer available. An awesome feature in Glitch IO was the ability to execute linux command via REST API, such as downloading the zip file from cloud storage with wget and extract it after which makes the hosting of static webpage easy.
Hi, @devsbitwise-7645! Welcome to the Vercel Community.
If you’re generating JaCoCo reports in a CI environment, you could consider using Vercel’s Git integration instead. You simply push your static files to a repository and let Vercel build/deploy automatically.
This way you don’t have to upload individual files using the REST API.
Let us know how you get on!