Quick Start
Get Sellino's web backend and both mobile apps running — the shortest path, with links to every detailed step.
Developed By: BugBuild Labs
What You're Setting Up
Sellino POS is one Laravel backend + database with two faces on top of it: the web admin & POS terminal, and a Flutter POS App for Android and iOS. Set up the backend first — the app points at its API.
Web Backend
Laravel admin panel, the browser POS terminal and the /api/v10 that powers the app. Install this first.
POS App
Flutter counter app (Android & iOS) — terminal, register, stock. Point it at your API URL, rebrand, build.
Jump to setup →Setup Order
Follow the three stages in order. Each app needs the backend's API to be live and reachable over HTTPS first.
Fastest path to a working store: finish stage 1 (backend + first admin login) and you already have a live website and admin panel. The mobile apps in stages 2–3 are added on top whenever you're ready.
Stage 1 · Web Backend (Laravel)
Install the Laravel source from the WebSourceCode folder onto your server. Full details are in the Web (Admin & POS) guide — the steps below link straight to each one.
-
Check server requirements
PHP 8.3+, MySQL 8.0+, Composer, Node.js. The web installer verifies each item on its first screen.
-
Create the database
Make a MySQL database + user (cPanel wizard) and keep the name, user and password ready.
-
Upload files & set environment
Upload
WebSourceCode, point the web root atpublic/, create.envand set writable permissions. -
Run the installer
Open your domain, fill in the database details and create your first admin account — it migrates and seeds automatically.
-
Log in to the admin panel
Sign in at the randomized admin login slug, then set store name, currency, logo and payment gateways in Settings.
-
Optional add-ons — Real-time chat, Push (Firebase), S3 storage
Turn these on when you need them. Push is also required if you want the mobile apps to send notifications — the full Firebase procedure is in Common Setup.
Before the apps: confirm https://yourdomain.com/api/v10 is reachable over valid HTTPS — the POS App will connect to exactly this URL.
Stage 2 · POS App (Flutter)
Build the counter app from the PosAppSourceCode folder. Full details are in the POS App guide.
-
Set up Flutter
Install Flutter (stable) + Android Studio / Xcode, then run
flutter doctorand fix any issues. -
Point it at your backend
Run
flutter pub get, then setkBaseUrlandkAppApiKeyinlib/core/env/prod_env.dart(release) — base URLhttps://yourdomain.com/api/v10, key from Settings → API Security. -
Add Firebase (for push)
Drop in
google-services.json/GoogleService-Info.plist; iOS also needs the APNs key uploaded to Firebase. Full steps in Common Setup. -
Rebrand — name, id & icon
Change the app name and package/bundle id to your own, then generate icons with
dart run flutter_launcher_icons. -
Build & release
Create a keystore +
key.propertiesfor Android; set your Team & bundle id in Xcode for iOS. Build the.aab/.ipaand publish. -
Open a register and sell
Log in as a cashier, confirm the branch, open a cash register on one of its counters, then scan or search products and take payment.
Go-Live Checklist
A quick pass before you open the doors to real customers:
- Site served over valid HTTPS and the web root points at
public/. php artisan key:generateran andAPP_KEYis set (the installer does this).- Store name, currency, timezone, logo/favicon set in Settings.
- Payment gateways switched to live keys (test keys only process test payments). Using Stripe or PayPal? Also set the charge currency, paste the Stripe webhook URL & signing secret, and make sure every currency has an exchange rate — a missing rate blocks international payments.
- Scheduler cron added (
schedule:run) if you use scheduled push campaigns, backups or nightly currency-rate updates. - Legal pages reviewed under Website → Pages — Privacy, Terms and Return & Refund ship with placeholder text.
- Mail/SMTP configured so OTP and notification emails send.
- Both apps point at the production API URL and were rebuilt after any config change.
- Firebase push tested on a real Android and iOS device (iOS needs the APNs key).
- Real-time chat (Reverb) kept running under Supervisor if you use live chat.
Need the detail behind any step? Open the Web (Admin & POS) or POS App guide from the tabs above — each Quick Start link jumps to the exact section.