feat: initial foundation for collaborative canteen ordering system in vanilla PHP

This commit is contained in:
2026-08-27 17:29:13 +07:00
commit 5effce30cb
52 changed files with 4915 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
services:
app:
build:
context: .
dockerfile: Dockerfile
container_name: order_system_app
restart: unless-stopped
ports:
- "${PORT:-8080}:80"
environment:
- APP_ENV=local
- APP_DEBUG=true
- DB_CONNECTION=sqlite
- DB_DATABASE=/var/www/html/storage/database.sqlite
volumes:
- .:/var/www/html
- storage_data:/var/www/html/storage
volumes:
storage_data: