Files
roxane/.lando.yml

61 lines
918 B
YAML
Raw Normal View History

2025-11-21 16:20:20 +01:00
name: roxane-app
2025-10-22 17:09:48 +02:00
recipe: laravel
config:
php: '8.3'
webroot: public
cache: redis
database: mariadb
# excludes:
# - vendor
# - node_modules
proxy:
appserver:
2025-11-21 16:20:20 +01:00
- roxane.lndo.site
2025-10-22 17:09:48 +02:00
mailhog:
2025-11-21 16:20:20 +01:00
- mail.roxane.lndo.site
2025-10-22 17:09:48 +02:00
pma:
2025-11-21 16:20:20 +01:00
- pma.roxane.lndo.site
2025-10-22 17:09:48 +02:00
services:
pma:
type: phpmyadmin
hosts:
- database
config:
config: lando/pma.php
mailhog:
type: mailhog
hogfrom:
- appserver
node:
type: node:22
redis:
type: redis:5
persist: false
portforward: true
worker:
type: php:8.3
via: cli
command: php artisan queue:work --sleep=3 --tries=3 --timeout=60
overrides:
volumes:
- .:/app
working_dir: /app
2025-10-22 17:09:48 +02:00
tooling:
npm:
service: node
redis-cli:
service: redis
phpstan:
service: appserver
cmd: /app/vendor/bin/phpstan
events:
post-start:
- composer install
- php artisan migrate