-
Notifications
You must be signed in to change notification settings - Fork 1
/
run.sh
executable file
·39 lines (37 loc) · 871 Bytes
/
run.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/bin/bash
export GITHUB_OAUTH_TOKEN="put your github oauth token here"
export REPOS=$(cat <<'heredoc'
---
-
group: edd
description: PRs on Edd's Projects
watches:
-
owner: eddgrant
repo: vagrant-roller
-
owner: eddgrant
repo: github-pull-request-dashboard
-
owner: basejump
repo: markdown-plus
-
group: beeb
watches:
-
owner: bbc
repo: gatling-load-tests
-
owner: bbc
repo: hive-runner
-
group: hmrc
watches:
-
owner: hmrc
repo: ct-calculations
heredoc)
echo "GitHub OAUTH Token: ${GITHUB_OAUTH_TOKEN}"
echo "REPOS: ${REPOS}"
echo "Starting Pull Requests App"
~/.pyenv/versions/venv-github-pull-requests-dashboard-2.7.10/bin/gunicorn --config=gunicorn.py pull_requests.pull_requests_web:app --debug --access-logfile - --error-log - --log-config logging.conf