Manual Upload
Uploading a Website Package
Upload a ZIP file containing your website to deploy instantly.
Preparing Your Package
Create a ZIP file with this structure:
website-package.zip
├── manifest.json # Required: Defines pages and templates
├── pages/ # Static HTML pages
│ ├── index.html
│ ├── about.html
│ └── contact.html
├── templates/ # CMS templates (optional)
│ ├── blog_index.html
│ └── blog_detail.html
└── public/ # Assets
├── css/style.css
├── js/main.js
└── images/
Uploading
- Go to Settings in your dashboard
- Scroll to Site Package
- Drag and drop your ZIP file, or click to browse
- Wait for the upload and processing to complete
- Your site is now live!
Requirements
- Maximum file size: 50MB
- Must include a valid
manifest.json - Must include at least one HTML page
After Upload
Fast Mode will:
- Extract and validate your files
- Create pages in the CMS based on your manifest
- Set up any CMS templates you've defined
- Make your assets available at
/public/...