-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3510 from alphagov/new-apps-repos-pages
New 'Repos' page and consolidation of 'Apps' page
- Loading branch information
Showing
7 changed files
with
62 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
title: All GOV.UK repositories | ||
--- | ||
|
||
# All GOV.UK repositories | ||
|
||
GOV.UK maintains at least <%= Repos.active.size %> repositories including apps, services, gems and documentation. | ||
|
||
## Repos by type | ||
|
||
| Type | Count | Repos | | ||
| --- | --- | --- | | ||
<% Repos.active.group_by(&:type).sort.each do |name, repos| %> | ||
| # <%= name %> | <%= repos.count %> | <%= repos.map { |repo| "[#{repo.repo_name}](/repos/#{repo.repo_name}.html)" }.join(", ") %> | | ||
<% end %> | ||
|
||
## Repos by team | ||
|
||
| Type | Count | Repos | | ||
| --- | --- | --- | | ||
<% Repos.active.group_by(&:team).sort.each do |name, repos| %> | ||
| # <%= name %> | <%= repos.count %> | <%= repos.map { |repo| "[#{repo.repo_name}](/repos/#{repo.repo_name}.html)" }.join(", ") %> | | ||
<% end %> | ||
|
||
## Reuse this data | ||
|
||
You can download this data as JSON or as CSV ([repos.json](/repos.json) and [repos.csv](/repos.csv)). | ||
|
||
In Google Spreadsheets, use the following formula to import all of the data: | ||
|
||
``` | ||
=importData("https://docs.publishing.service.gov.uk/repos.csv") | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters