Skip to content

Commit bd6ebff

Browse files
authored
Merge pull request #19 from techytushar/master
Improved README.md
2 parents f60e79b + de52140 commit bd6ebff

1 file changed

Lines changed: 58 additions & 1 deletion

File tree

README.md

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,58 @@
1-
# review-board
1+
# review-board
2+
Python Project to get the list of all the pull requests made to your repository. It has plugins for all popular websites like Github, Gitlab, Gerrit and Pagure.
3+
4+
## How to setup
5+
* Install the **virtualenv** package using pip
6+
7+
Linux
8+
```
9+
pip3 install virtualenv
10+
```
11+
Windows
12+
```
13+
pip install virtualenv
14+
```
15+
16+
* Setup a virtual environment
17+
```
18+
virtualenv myenv
19+
```
20+
* Activate the virtual environment
21+
22+
Linux
23+
```
24+
source myenv/bin/activate
25+
```
26+
Windows
27+
```
28+
myenv\Scripts\ activate
29+
```
30+
* Install all the needed packages using pip.
31+
32+
**Linux**
33+
```
34+
pip3 install -r requirement.txt
35+
```
36+
**Windows**
37+
```
38+
pip install -r requirement.txt
39+
```
40+
## How to run
41+
Just run the app.py file along with the following flags:
42+
43+
**--site** - the website you want to get data from.
44+
45+
**--username** - username.
46+
47+
**--repo** - name of the repository.
48+
49+
**Linux**
50+
```
51+
python3 app.py --site github --username user --repo repo_name
52+
```
53+
**Windows**
54+
```
55+
python app.py --site github --username techytushar --repo repo_name
56+
```
57+
## Licensing
58+
review-board is licensed under GPL-3.0. See [LICENSE](https://github.com/geeksocket/review-board/blob/master/LICENSE) for the full license text.

0 commit comments

Comments
 (0)