Skip to content

Commit

Permalink
Merge pull request #413 from yuvipanda/external
Browse files Browse the repository at this point in the history
Add UToronto to list of running hubs
  • Loading branch information
damianavila authored May 17, 2021
2 parents 22f4115 + 151dd3d commit 8d61a4f
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,13 @@

# Grab the latest list of clusters defined in pilot-hubs/
clusters = Path("../config/hubs").glob("*")
hub_list = []
# Add list of repos managed outside pilot-hubs
hub_list = [{
'name': 'University of Toronto',
'domain': 'jupyter.utoronto.ca',
'id': 'utoronto',
'template': 'base-hub ([deployment repo](https://github.com/utoronto-2i2c/jupyterhub-deploy/))'
}]
for cluster_info in clusters:
if "schema" in cluster_info.name:
continue
Expand Down Expand Up @@ -95,5 +101,4 @@
path_tmp = Path("tmp")
path_tmp.mkdir(exist_ok=True)
path_table = path_tmp / "hub-table.csv"
if not path_table.exists():
df.to_csv(path_table, index=None)
df.to_csv(path_table, index=None)

0 comments on commit 8d61a4f

Please sign in to comment.