Skip to content

Latest commit

 

History

History
50 lines (32 loc) · 845 Bytes

README.md

File metadata and controls

50 lines (32 loc) · 845 Bytes

Probot example for Nitro

Look at the Nitro documentation to learn more.

Setup

Make sure to install the dependencies:

# npm
npm install

# yarn
yarn install

# pnpm
pnpm install

Required Environment Variables

Similar to Probot's default behavior, you need to set the following environment variables:

  • APP_ID - The ID of the GitHub App
  • WEBHOOK_SECRET - The secret used to secure the webhook
  • PRIVATE_KEY - The private key of the GitHub App

Development Server

Start the development server on http://localhost:3000

npm run dev

Production

Build the application for production:

npm run build

Locally preview production build:

npm run preview

Check out the deployment documentation for more information.