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

SEO & Metadata Details

Contact & Announcement Settings

Checkout Credentials (PayID & Bank Transfer)

Configure your payment coordinates. These coordinates display directly on the success screen after a customer clicks buy. The reference matches a unique token generated on checkout.

Enter a free Firebase Realtime Database URL to sync customer orders and tracking status in real time across multiple browsers/devices. Leave blank to run in offline local demo mode.

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.

1

Initialize Local Git Repository

Open your terminal inside this directory and initialize your repository. Commit all current layout files:

git init
git add .
git commit -m "feat: luxury storefront layout"

2

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 remote add origin https://github.com/dfaktzl/vapestore.git
git branch -M main
git push -u origin main

3

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.

4

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 add config.json
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!