Aplikasi pemesanan makanan sederhana (Laravel) untuk demo dan pengembangan lokal.
License: MIT License
- PHP:: 8.0+
- Composer:: latest
- Node.js & npm:: 16+ / npm
- Database:: MySQL atau MariaDB
Berikut beberapa screenshot dari permainan:
- Install dependencies:
composer install
npm install- Copy environment file:
# PowerShell
cp .env.example .env
# or (Linux/macOS)
cp .env.example .env-
Set environment variables:
- Update
DB_CONNECTION,DB_HOST,DB_PORT,DB_DATABASE,DB_USERNAME,DB_PASSWORDdi file.env.
- Update
-
Generate app key:
php artisan key:generate- Migrate & seed database:
php artisan migrate --seed- Build / watch frontend assets:
# Development (watch)
npm run dev
# Production build
npm run build- Run the app (local):
php artisan serve
# default: http://127.0.0.1:8000Testing
- Run tests:
php artisan test
# or
vendor/bin/phpunitImportant Files
- Routes:: routes/web.php
- Models:: app/Models
- Views:: resources/views
- Migrations:: database/migrations
Common Commands
- Clear cache::
php artisan optimize:clear - Run queues::
php artisan queue:work - Seed only::
php artisan db:seed
Contributing
- Fork the repo, buat branch feature, buka pull request. Jaga commit kecil dan deskriptif.






