Getting Started
Requirements
Before you get started with this recipe, we assume that you have:
- Installed Lando and gotten familiar with its basics.
- Initialized a Landofile for your codebase for use with this recipe.
- Read about the various services, tooling, events and routing Lando offers.
Quick Start
bash
# Go through interactive prompts to get your site from pantheon
lando init --source pantheon
# OR do it non-interactively
lando init \
--source pantheon \
--pantheon-auth "$PANTHEON_MACHINE_TOKEN" \
--pantheon-site "$PANTHEON_SITE_NAME"
# Start it up
lando start
# Import your database and files
lando pull
# List information about this app.
lando info