Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/aaryanporwal/layer0-nextjs-example
https://github.com/aaryanporwal/layer0-nextjs-example
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aaryanporwal/layer0-nextjs-example
- Owner: aaryanporwal
- Created: 2021-11-02T17:15:28.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-11-02T17:15:30.000Z (about 3 years ago)
- Last Synced: 2024-10-12T08:10:59.771Z (3 months ago)
- Language: JavaScript
- Size: 172 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Deploy Next.js example to Layer0
A demo deployment of Next.js app to Layer0.## Demo
https://layer0-docs-layer0-next-example-default.layer0.link/## Try It Now
[![Deploy with Layer0](https://docs.layer0.co/button.svg)](https://app.layer0.co/deploy?repo=https://github.com/layer0-docs/layer0-nextjs-example)## Getting Started
### Clone This Repo
Use `git clone https://github.com/layer0-docs/layer0-nextjs-example.git` to get the files within this repository onto your local machine.
### Install dependencies
On the command line, in the project root directory, run the following command:
```bash
npm install
```### Run the Next.js app locally on Layer0
Run the Next.js app with the command:
```bash
npm run layer0:dev
```Load the site: http://127.0.0.1:3000
### Testing production build locally with Layer0
You can do a production build of your app and test it locally using:
```bash
layer0 build && layer0 run --production
```Setting --production runs your app exactly as it will be uploaded to the Layer0 cloud using serverless-offline.
## Deploying to Layer0
Deploying requires an account on Layer0. [Sign up here for free](https://app.layer0.co/signup). Once you have an account, you can deploy to Layer0 by running the following in the root folder of your project:
```bash
layer0 deploy
```See [deploying](https://docs.layer0.co/guides/deploying) for more information.