mirror of
https://github.com/vacp2p/rfc.vac.dev.git
synced 2026-01-06 21:03:52 -05:00
* scrape with 1:1 mapping to origin repo * exclude .md extension from file path in URLs inside MDs * removed legacy static files * remove image path manipulation * move scrapper to new folder * sidebar custom ordering implemented
13 lines
168 B
JavaScript
13 lines
168 B
JavaScript
import 'dotenv/config';
|
|
|
|
const {
|
|
GITHUB_TOKEN
|
|
} = process.env;
|
|
|
|
if (!GITHUB_TOKEN) {
|
|
throw new Error("Please provide the GITHUB_TOKEN")
|
|
}
|
|
|
|
export {
|
|
GITHUB_TOKEN
|
|
} |