Skip to content

Online Pos Platform build with Laravel , Sanctum , Vite.js , Vue.js , Pinia and Tailwindcss .

License

Notifications You must be signed in to change notification settings

SaiHtetWaiYan/pos

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Online Pos Platform

🧶 A application build with Laravel , Sanctum , Vite.js , Vue.js , Pinia and Tailwindcss .

Resources

Demo

https://app.onlinepos.store

The frontend of the current demo project is running on Netlify, while the backend is running on DigitalOcean

Project setup

Clone the repo locally:

git clone https://github.com/SaiHtetWaiYan/pos.git 
cd pos

Install PHP dependencies:

cd backend
composer install

Install NPM dependencies:

cd frontend
npm install

Build assets:

npm run dev

Setup configuration:

cp .env.example .env

Generate application key:

php artisan key:generate

Connect to local database

DB_DATABASE= database name
DB_USERNAME= database user name
DB_PASSWORD= database password

Run database migrations:

php artisan migrate

Run PHP development server:

php artisan serve

You're ready to go!