Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
4dbd7ff
Create hello_world.html
oshouse Apr 19, 2022
56f5277
Merge pull request #1 from oshouse/patch-1
BEBeach Apr 19, 2022
958fc9a
Update augur_view.py
oshouse Apr 19, 2022
0b718ff
Merge pull request #2 from oshouse/patch-3
BEBeach Apr 19, 2022
a2bac03
Added Sprint 2 Write Up
BEBeach Apr 19, 2022
03c0f99
Update README.md
BEBeach Apr 19, 2022
f39800c
Update init.py
rachelcarlson11 Apr 19, 2022
22fdb77
Merge pull request #3 from rachelcarlson11/patch-1
BEBeach Apr 19, 2022
8d39754
Rename hello_world.html to hello-world.html
oshouse Apr 19, 2022
e3bfa91
Merge pull request #4 from oshouse/patch-4
BEBeach Apr 19, 2022
60ef8ed
Update status.html
QThuet Apr 21, 2022
737efdf
Update status.html
rachelcarlson11 Apr 21, 2022
ff515bc
sort missing pulls data
rachelcarlson11 Apr 26, 2022
e1a9c58
sort pull request count chart; update scale and sort issues chart
rachelcarlson11 Apr 26, 2022
e544047
Increase "Issues" min-height value
rachelcarlson11 Apr 26, 2022
3203f4c
Single Repo Stats 85% implimentation
QThuet Apr 28, 2022
c2a89e2
Update status.html
QThuet Apr 28, 2022
f228442
re-push
rachelcarlson11 Apr 28, 2022
15fac94
Update status.html
QThuet Apr 28, 2022
8243244
Fixed a non sorted graph
QThuet Apr 28, 2022
8642305
Fixed up Issues Count Chart
QThuet Apr 28, 2022
dfb3a1a
Update status.html
BEBeach Apr 28, 2022
1779a3e
Update status.html
BEBeach Apr 28, 2022
564e1ea
Update status.html
BEBeach Apr 28, 2022
c9b20ed
Update README.md
BEBeach Apr 28, 2022
d6b90dd
updated timeline
jstepanek Apr 28, 2022
d3c6b32
Update status.html
QThuet Apr 28, 2022
d0b0513
Update status.html
QThuet Apr 28, 2022
73e3b79
Update status.html
QThuet Apr 28, 2022
171434c
Updated Commit Status
BEBeach Apr 29, 2022
6beda62
Merge pull request #5 from BEBeach/Status
BEBeach Apr 29, 2022
541cb02
Add files via upload
BEBeach Apr 29, 2022
fdb9509
Add files via upload
BEBeach Apr 29, 2022
7f36512
Update README.md
BEBeach May 2, 2022
4f45126
Add files via upload
BEBeach May 2, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added 4320 Semester Project - Sprint 2.pdf
Binary file not shown.
Binary file added 4320 Semester Project - Sprint 3.pdf
Binary file not shown.
Binary file added 4320 Semester Project - Sprint 4.pdf
Binary file not shown.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,12 @@ To run as a local instance:
- `python3 -m venv env`
- `source env/bin/activate`
2. Make sure you have the requirements installed
- `pip3 install python3-venv flask pyyaml urllib3`
- `pip3 install flask, pyyaml, urllib3`
3. Run the app
- `./run.sh`
4. Open up the webpage at either
- `localhost:5000/status`
- `127.0.0.1:5000/status`

Once the server is running, you can change the default `serving` url in `config.yml` and either restart the app or navigate to `[approot]/settings/reload` in the browser to connect to the desired augur instance.

Expand Down
8 changes: 8 additions & 0 deletions augur_view.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,3 +179,11 @@ def wait_for_request(id):
# return jsonify(report_requests[id])
# else:
# return jsonify({"exists": False})

""" ----------------------------------------------------------------
Hello World example:
This is an example demonstrating the use of modules.
"""
@app.route('/hello-world')
def hello_world():
return render_module("hello-world")
2 changes: 1 addition & 1 deletion init.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def init_settings():
settings["approot"] = "/"
settings["caching"] = "static/cache"
settings["cache_expiry"] = 604800
settings["serving"] = "default.osshealth.io"
settings["serving"] = "http://augur.chaoss.io/api/unstable/"
settings["pagination_offset"] = 25
settings["reports"] = "reports.yml"

Expand Down
2 changes: 2 additions & 0 deletions templates/hello-world.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<h1>Hello, world!</h1>
<p>This is a template example</p>
321 changes: 265 additions & 56 deletions templates/status.html

Large diffs are not rendered by default.