-
Notifications
You must be signed in to change notification settings - Fork 0
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 #30 from roebi/29-implement-github-api
29 implement GitHub api
- Loading branch information
Showing
19 changed files
with
16,033 additions
and
14,265 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
export declare const GITHUB_PROJECT_TOPICS = "$.topics[*]"; | ||
export declare const GITHUB_LOGIN_AVATAR_URL = "$.avatar_url"; | ||
export declare const GITHUB_API_BASE_URL = "https://api.github.com/"; | ||
export declare const GITHUB_HTML_BASE_URL = "https://github.com/"; |
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 |
---|---|---|
@@ -1,7 +1,15 @@ | ||
// Place any global data in this file. | ||
// You can import this data from anywhere in your project by using the `import` keyword. | ||
// pathExpression constant for github-api-get-project | ||
export const GITHUB_PROJECT_TOPICS = "$.topics[*]"; | ||
// pathExpression constant for github-api-get-login | ||
export const GITHUB_LOGIN_AVATAR_URL = "$.avatar_url"; | ||
// github constants | ||
// github api base url | ||
export const GITHUB_API_BASE_URL = "https://api.github.com/"; | ||
// github HTML base url | ||
// example https://github.com/roebi/01-02-Webserver-in-Go-on-Podman | ||
export const GITHUB_HTML_BASE_URL = "https://github.com/"; | ||
// examples | ||
// export const GITHUB_LOGIN = "roebi"; | ||
// export const GITHUB_OWNER_HTML_URL = GITHUB_HTML_BASE_URL + GITHUB_LOGIN + "/"; |
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 |
---|---|---|
@@ -1,10 +1,24 @@ | ||
// Place any global data in this file. | ||
// You can import this data from anywhere in your project by using the `import` keyword. | ||
|
||
// pathExpression constant for github-api-get-project | ||
|
||
export const GITHUB_PROJECT_TOPICS = "$.topics[*]"; | ||
|
||
// pathExpression constant for github-api-get-login | ||
|
||
export const GITHUB_LOGIN_AVATAR_URL = "$.avatar_url"; | ||
|
||
// github constants | ||
|
||
// github api base url | ||
export const GITHUB_API_BASE_URL = "https://api.github.com/"; | ||
|
||
// github HTML base url | ||
// example https://github.com/roebi/01-02-Webserver-in-Go-on-Podman | ||
export const GITHUB_HTML_BASE_URL = "https://github.com/"; | ||
|
||
// examples | ||
|
||
// export const GITHUB_LOGIN = "roebi"; | ||
// export const GITHUB_OWNER_HTML_URL = GITHUB_HTML_BASE_URL + GITHUB_LOGIN + "/"; |
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
Oops, something went wrong.