Files
roxane/.lando.yml

53 lines
737 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
tooling:
npm:
service: node
redis-cli:
service: redis
phpstan:
service: appserver
cmd: /app/vendor/bin/phpstan
events:
post-start:
- composer install
- php artisan migrate