-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconsts.ts
More file actions
24 lines (15 loc) · 741 Bytes
/
consts.ts
File metadata and controls
24 lines (15 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 + "/";