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.

79 lines
1.6 KiB
Markdown

1 year ago
# Customer Point
Just a simple app to record customer poin and web to access poin gain
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
1 year ago
prepare env
1 year ago
```bash
cp .env.example .env # configure app for laravel
touch database/database.sqlite # if you use .env.example with default sqlite database
composer install
npm install
1 year ago
```
use php server
```bash
php artisan migrate --seed # create table for db and seed data
php artisan key:gen
php artisan ser #keep run to dev
```
compile asset
```bash
npm run dev # compiling asset for development # keep run for dev
```
<hr/>
1 year ago
1 year ago
easy way
1 year ago
```bash
1 year ago
docker compose up -d
1 year ago
```
## Default User
```bash
username : admin@admin.com
password : password
```
## Compile Assets ( to prod )
```bash
npm run build
```
1 year ago
## Screenshot
![image1](1.png?raw=true)
![image2](2.png?raw=true)
1 year ago
## Other
```php
$faker = Faker\Factory::create();
foreach (range(0,1000) as $range) {
echo $faker->regexify('[A-Z]{5}[0-4]{3}').', '.$faker->name.','.$faker->randomNumber(3, false). "\n";
}
```
1 year ago
```bash
rsync -arP -e 'ssh -p 224' --exclude=node_modules --exclude=.git --exclude=.env --exclude=storage --exclude=public/hot . arm@ajikamaludin.id:/home/arm/projects/point
rsync -arP -e 'ssh -p 224' --exclude=node_modules --exclude=database/database.sqlite --exclude=.git --exclude=.env --exclude=storage --exclude=public/hot . arm@ajikamaludin.id:/home/arm/projects/point
```