Export & Deploy

PinSpec allows you to export your web page source code, which you can then build and deploy to hosting platforms like Netlify.

1. Install Required Tools

Download and install:

2. Export Your Source

In PinSpec: Menu (☰) → Export. Which downloads the source code as .zip file.

image.png

3. Open the Project

Unzip the downloaded bundle to a folder on your computer. Open Cursor/VS Code and click Open Project, then select the unzipped project folder.

image.png

4. Build Your Site

Open the integrated terminal (Cursor/VS Code: Press `Ctrl+`` (backtick) or go to TerminalNew Terminal), then run these commands:

npm install
npm run build

This creates a dist/ folder containing the optimized, static site files ready for deployment.

5. Deploy to Netlify

Drag the build folder (dist/) into Netlify Drop to publish your site live.

image.png

Note: If you make further code changes, repeat step 4 to rebuild before redeploying.