Publishing overview

Publishing your site from Site Designer

Site Designer offers three distinct paths to put your project on the web. Which one is right for you depends on where you’re hosting and how much control you need over the final files.

The three publishing methods

1. S-Drive (one-click CoffeeCup hosting)

S-Drive is CoffeeCup’s included hosting service. Every Site Designer license comes with an S-Drive account. Click Publish, and your site is live at a *.s-drive.io subdomain within seconds. No FTP credentials, no file management, no server setup.

Best for: Getting a site live fast, client previews, personal projects, and anyone who doesn’t already have web hosting.

2. FTP publishing

Site Designer has a built-in FTP client. Enter your host’s FTP credentials once and publish directly from inside the app. Changed files are replaced; unchanged files are left alone. Supports both FTP and SFTP.

Best for: Designers who already have a shared hosting account (like GoDaddy, Bluehost, SiteGround, etc.) and want to publish without leaving Site Designer.

3. Manual export

Export a complete, self-contained folder of HTML, CSS, JS, and assets. You then upload those files to any host you choose — Netlify, Vercel, GitHub Pages, Amazon S3, your own server.

Best for: Developers who want full control, teams using Git-based deployment workflows, or anyone hosting on a static hosting platform.

Decision table

S-DriveFTPManual Export
Setup effortNoneEnter credentials onceExport + upload manually each time
Hosting costIncluded with licensePay your hostFree tiers available (Netlify, Vercel)
Custom domainYes (CNAME)Yes (through your host)Yes (through your host/platform)
HTTPSAutomatic (Let’s Encrypt)Depends on your hostDepends on platform
Git integrationNoNoYes — export to a repo folder
PHP/dynamic pagesNoYes (if host supports it)Yes (if host supports it)
Update workflowPublish againPublish againRe-export + re-upload

What happens during publishing

Regardless of method, Site Designer performs the same export step before transferring files:

  1. Validates all pages and assets.
  2. Generates clean HTML, CSS, and JS files.
  3. Optionally minifies code (configurable in Export Settings).
  4. Copies all referenced images, fonts, and media into the output.

The difference is only in where the files go after export: S-Drive servers, your FTP host, or a local folder.

Next steps