Deploying a Bare App Using Zip Files
This guide explains how to create a bare app on Stormkit and deploy it using zip files.
Prerequisites
- A zip file containing your app's build files (e.g.,
index.html
, style.css
, etc.).
Steps to Create and Deploy a Bare App
1. Create a New App
- Log in to your Stormkit dashboard.
- Click on the Create new app button.
- Select Create bare app.
2. Configure the App
- Navigate to the app's Config tab.
- Set up your app's environment variables, domains, and other configurations as needed.
Note: If you specify a server command before uploading the zip file, the deployment will be treated as a server deployment instead of a static deployment.
3. Prepare Your Zip File
-
Ensure your app's build files are ready and organized in a folder.
-
Compress the folder into a .zip
file. For example:
zip -r app-build.zip /path/to/your/build/files
4. Deploy the Zip File
- Now click the Deploy button to open the modal.
- Select your zip file and upload it.
- Click Deploy now to proceed.
5. Verify the Deployment
- After the deployment is complete click the Preview button.
- Open the provided URL to verify that your app is live.