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
Try out the relevant commands below to spin up a new Landoified vanilla LAMP site.
Note that CodeIgniter could be any other php framework or your own custom php thing.
bash
# Initialize a lamp recipe using the latest codeigniter version
lando init \
--source remote \
--remote-url https://github.com/bcit-ci/CodeIgniter/archive/3.1.10.tar.gz \
--remote-options="--strip-components 1" \
--recipe lamp \
--webroot . \
--name my-first-lamp-app
# Start it up
lando start
# List information about this app.
lando info