You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-3Lines changed: 7 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,18 @@
1
1
# PR Viewer
2
2
3
-
This React application allows you to view open pull requests from GitHub repositories in the OpenDevin organization.
3
+
This React application allows you to view open pull requests from GitHub repositories in a GitHub organization. By default, it uses the All-Hands-AI organization.
4
4
5
5
## Setup
6
6
7
7
1. Clone the repository
8
8
2. Install dependencies: `npm install`
9
-
3. Create a `.env` file in the root directory and add your GitHub token:
9
+
3. Create a `.env` file in the root directory and add your configuration:
10
10
```
11
+
# Required: GitHub token for API access
11
12
VITE_GITHUB_TOKEN=your_github_token_here
13
+
14
+
# Optional: GitHub organization to fetch repositories from (defaults to All-Hands-AI)
15
+
VITE_GITHUB_ORG=your_github_org_here
12
16
```
13
17
4. Run the development server: `npm run dev`
14
18
5. Open your browser and navigate to the URL provided by Vite (usually http://localhost:5173)
@@ -23,7 +27,7 @@ To build the app for production, use: `npm run build`
23
27
24
28
## Note
25
29
26
-
Make sure to replace `your_github_token_here` with an actual GitHub personal access token that has the necessary permissions to read repository and pull request information from the OpenDevin organization.
30
+
Make sure to replace `your_github_token_here` with an actual GitHub personal access token that has the necessary permissions to read repository and pull request information from the target organization.
0 commit comments