You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.1 KiB
Markdown

1 year ago
# Laravel Simple POS
1 year ago
1 year ago
This is a simple POS app built with laravel , inertiajs , react , tailwindcss with flowbite
1 year ago
1 year ago
## Support me
<a href="https://trakteer.id/ajikamaludin" target="_blank"><img id="wse-buttons-preview" src="https://cdn.trakteer.id/images/embed/trbtn-blue-2.png" height="40" style="border:0px;height:40px;" alt="Trakteer Saya"></a>
## Requirements
1 year ago
- PHP 8.1 or latest
- Node 16+ or latest
1 year ago
## How to run
```bash
cp .env.example .env # configure app for laravel
touch database/database.sqlite # if you use .env.example with default sqlite database
composer install
1 year ago
php artisan migrate --seed
1 year ago
npm install
npm run dev # compiling asset for development
```
## Default User
```bash
username : admin@admin.com
password : password
```
## Compile Assets ( to prod )
```bash
npm run build
```
1 year ago
1 year ago
## Screenshot
![image1](1.png?raw=true)
![image2](2.png?raw=true)
1 year ago
## Rsync
```bash
1 year ago
rsync -arP -e 'ssh -p 224' --exclude=node_modules --exclude=.git --exclude=.env --exclude=storage/logs --exclude=public/hot . arm@ajikamaludin.id:/home/arm/projects/simple-pos
1 year ago
```