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
Note that this could also be used for ExpressJS, Koa, KeystoneJS or any other MEANish project.
bash
# Initialize a mean recipe for use with ghost
lando init --source cwd \
--recipe mean \
--option port=2368 \
--option command="su - node -c '/var/www/.npm-global/bin/ghost run -d /app/src -D'" \
--name meanest-app-youve-ever-seen
# Install ghost
lando ssh -c "npm install ghost-cli@latest -g && mkdir src && cd src && ghost install local --no-start --ip 0.0.0.0"
# Start it up
lando start
# List information about this app.
lando info