Files
roxane/.lando.yml
Nebulae 25885e3b70
All checks were successful
Deploy Roxane to Preprod / deploy (push) Successful in 1m21s
feat(Password process for new admin, cleaning translations)
2026-04-01 15:50:21 +02:00

61 lines
918 B
YAML

name: roxane-app
recipe: laravel
config:
php: '8.3'
webroot: public
cache: redis
database: mariadb
# excludes:
# - vendor
# - node_modules
proxy:
appserver:
- roxane.lndo.site
mailhog:
- mail.roxane.lndo.site
pma:
- pma.roxane.lndo.site
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
tooling:
npm:
service: node
redis-cli:
service: redis
phpstan:
service: appserver
cmd: /app/vendor/bin/phpstan
events:
post-start:
- composer install
- php artisan migrate