Vape 'R' Aus Merchant Panel
Configure products, adjust SEO tags, manage bank details and PayID, and review local client orders database logs.
📁 Load an existing config.json to resume editing:
Add New Catalog Product
Active Inventory Items (0)
| Product Information | Category | Single Price | Box (10x) Price | Formats | Actions |
|---|
Customer Orders Log
Git & Deployment Automation Guide
Because this application runs on static JSON architectures, you don't need databases, hosting servers, or recurring billing. Follow this guide to hook up the repository to automatic deployment pipelines for free.
Initialize Local Git Repository
Open your terminal inside this directory and initialize your repository. Commit all current layout files:
git add .
git commit -m "feat: luxury storefront layout"
Create a Repository on GitHub
Go to GitHub, sign in (free), and create a new repository called vapestore under your account. Push your local files to GitHub:
git branch -M main
git push -u origin main
Connect Netlify or Cloudflare Pages
Register a free account on Netlify or Cloudflare Pages:
• Select Import from Git.
• Link your GitHub repository.
• Leave the build command and directory blank. Click Deploy.
Netlify will generate a free custom subdomain. You can hook up custom domains like vapesraus.com for free in their panel.
Automate Content Updates
When you want to edit pricing, bank routing numbers, or add vapes:
• Make changes in this admin panel.
• Click the Export config.json button at the top of the page.
• Save the file directly, replacing the existing config.json in this local folder.
• Push the update to GitHub using git:
git commit -m "update: product catalog"
git push
Netlify detects the commit in GitHub and automatically deploys the update. Your live site will update worldwide in 10-15 seconds!