We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5dcdad commit 7578cc4Copy full SHA for 7578cc4
fetch.js
@@ -3,9 +3,9 @@ const https = require("https");
3
process = require("process");
4
require("dotenv").config();
5
6
-const GITHUB_TOKEN = "ghp_YourGitHubTokenHere";
7
-const GITHUB_USERNAME = "pr862";
8
-const USE_GITHUB_DATA = "true";
+const GITHUB_TOKEN = process.env.REACT_APP_GITHUB_TOKEN;
+const GITHUB_USERNAME = process.env.GITHUB_USERNAME;
+const USE_GITHUB_DATA = process.env.USE_GITHUB_DATA;
9
const MEDIUM_USERNAME = process.env.MEDIUM_USERNAME;
10
11
const ERR = {
0 commit comments