Ga naar inhoud

Nieuw project

Lando configuratie bestand

/site/.lando.yml

# Vul hier je project naam in, zoals hetccv
name: hetccv
# Kies een recipe die Lando gebruikt
recipe: wordpress
# Configuratie sectie
config:
# Geef aan welke PHP versie jouw project gebruikt
php: "8.0"
via: nginx
webroot: web
xdebug: "debug,develop,trace"
services:
database:
type: mariadb

.env bestand

/site/.env

# Copy this file to .env for development with lando
DB_NAME=wordpress
DB_USER=wordpress
DB_PASSWORD=wordpress
DB_HOST=database
WP_ENV=development
# Vul hier je WP_HOME in, dit komt overeen met de naam ( name ) die je invult in de stap hierboven.
WP_HOME=http://hetccv.lndo.site
WP_SITEURL=${WP_HOME}/wp