add process-compose file for backend and frontend

This commit is contained in:
Yisroel Baum 2026-05-17 10:25:00 +03:00
parent e8ab361bc6
commit 033bb99da3
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9

14
process-compose.yml Normal file
View file

@ -0,0 +1,14 @@
version: "1"
processes:
backend:
command: php -S 127.0.0.1:8000 -t backend/public/
working_dir: .
availability:
restart: always
frontend:
command: npm run dev
working_dir: frontend/rabbi_gerzi
availability:
restart: always