Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 604 Bytes

README.md

File metadata and controls

41 lines (29 loc) · 604 Bytes

sls-nextjs

Install

To install the project with yarn v3, run yarn install.

Example app

Start the example app in development mode

cd example-app
yarn dev

Start the example app in production mode (local next server)

cd example-app
yarn build
yarn start

Build the package deployment

cd packages/deployment
yarn package

Deploy the example app in production mode (AWS serverless server)

cd example-app
# For a first deployment only:
yarn bootstrap
# Deploy the app
yarn deploy

Contribute