RYR landing page
Setup a directory to store the RYR projects:
export RYR_PROJECT_DIR="${HOME}/projects/request-yo-racks"Clone the project:
mkdir -p "${RYR_PROJECT_DIR}"
cd "${RYR_PROJECT_DIR}"
git clone git@github.com:request-yo-racks/landing-page.gitPrepare your development environment:
cd "${RYR_PROJECT_DIR}/landing-page"
npm iTo serve the project locally:
npm run devTo test the project locally (i.e. running the full list of ci-tasks):
npm run ciThe scripts section of the package.json file will show you all the available commands.