From be16aeee6b056ee5ce5caeacdfbdf9f805050067 Mon Sep 17 00:00:00 2001 From: Ehsan200 Date: Tue, 2 Jan 2024 18:02:29 +0330 Subject: [PATCH] fix: Fix GH_TOKEN key in README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 159351a..2e90170 100644 --- a/README.md +++ b/README.md @@ -23,12 +23,12 @@ You need to have Python and pip installed on your machine. You can download Pyth Before running the project, you need to set the following environment variable: -- `GITHUB_TOKEN`: Your personal GitHub token. This is required to authenticate with the GitHub API and increase the rate limit. You can generate a personal access token from [here](https://github.com/settings/tokens). +- `GH_TOKEN`: Your personal GitHub token. This is required to authenticate with the GitHub API and increase the rate limit. You can generate a personal access token from [here](https://github.com/settings/tokens). You can set the environment variable in your terminal like this: ```bash -export GITHUB_TOKEN=your_token_here +export GH_TOKEN=your_token_here ``` Replace `your_token_here` with your actual GitHub token. This command needs to be run in the same terminal session before you start the application. If you close the terminal or start a new session, you will need to run the command again.