Docs / Building Your Site / Manual Upload
Back to FastMode

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

  1. Go to Settings in your dashboard
  2. Scroll to Site Package
  3. Drag and drop your ZIP file, or click to browse
  4. Wait for the upload and processing to complete
  5. 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/...
Built in Fast Mode