🧶 A application build with Laravel , Sanctum , Vite.js , Vue.js , Pinia and Tailwindcss .
The frontend of the current demo project is running on Netlify, while the backend is running on DigitalOcean
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!