From 3fea8c993bb12031b5d3f1d9404e453890d74a7e Mon Sep 17 00:00:00 2001 From: Patrick Heneise Date: Sat, 11 Nov 2023 13:30:13 -0500 Subject: [PATCH] chore: production env description --- .env.example | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.env.example b/.env.example index 6e35679..011d083 100644 --- a/.env.example +++ b/.env.example @@ -1,9 +1,32 @@ GH_ORG=cyprus-developer-community GH_GRAPHQL_URL=https://api.github.com/graphql +# Development Variables +# # https://github.com/settings/tokens?type=beta # Create a fine-grained token with the following permissions: # Resource owner: cyprus-developer-community # Repository Access: Public Repositories (read only) # Organization permissions: Members (read only) GH_PAT= + + +# Production Variables +# +# Go to Settings -> Developer Settings -> GitHub Apps and create a new GitHub App +# https://github.com/organizations//settings/apps/new +# Set up the permissions and install the application in your organization. The installation ID +# can be found in the URL of the installation page: +# ie: https://github.com/organizations//settings/installations/123456789 +# Create a private key and store it on a secure location. +# +# Permissions: +# Repository permissions +## Issues: Read & Write +## Pull Requests: Read & Write +# Organization permissions +## Members: Read & Write + +GH_APP_ID= +GH_APP_INSTALLATION_ID= +GH_PRIVATE_KEY= \ No newline at end of file