feat(LRL App): init V0

This commit is contained in:
2025-10-22 17:09:48 +02:00
parent d3303fee95
commit 0924da3cda
475 changed files with 44862 additions and 7 deletions

52
.lando.yml Normal file
View File

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