27 lines
851 B
YAML
27 lines
851 B
YAML
# ------------------------------------------------------------------
|
|
# Lenvi: Central Configuration for Your Development Environment
|
|
# ------------------------------------------------------------------
|
|
|
|
# 1. Set the global database engine.
|
|
# Choose one: "mariadb", "mysql", or "postgres"
|
|
db_engine: "mariadb"
|
|
|
|
# 2. Define all your Laravel sites below.
|
|
# Add, edit, or remove sites as needed.
|
|
sites:
|
|
- domain: myapp.local
|
|
project_root: /home/mar/projects/myapp
|
|
php_version: "8.2"
|
|
|
|
- domain: legacy-app.local
|
|
project_root: /home/mar/projects/legacy-app
|
|
php_version: "8.0"
|
|
|
|
- domain: another-project.local
|
|
project_root: /home/mar/projects/another-project
|
|
php_version: "8.2"
|
|
|
|
# Example of a new project you might add later:
|
|
# - domain: new-api.local
|
|
# project_root: /home/mar/projects/new-api
|
|
# php_version: "8.3" |