-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy path.envrc.example
More file actions
29 lines (23 loc) · 996 Bytes
/
.envrc.example
File metadata and controls
29 lines (23 loc) · 996 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
25
26
27
28
29
#!/usr/bin/env bash
# API Configuration (override defaults in src/config/constants.ts)
export GRAPHQL_HOST='https://api.nes.herodevs.com';
export GRAPHQL_PATH='/graphql';
export EOL_REPORT_URL='https://eol-report-card.apps.herodevs.com/reports';
export ANALYTICS_URL='https://eol-api.herodevs.com/track';
export EOL_LOG_IN_URL='https://apps.herodevs.com/eol/api/auth/cli-log-in';
# OAuth (for hd auth login)
export OAUTH_CONNECT_URL='';
export OAUTH_CLIENT_ID='';
# export OAUTH_CALLBACK_PORT='4000';
# export OAUTH_CALLBACK_REDIRECT='http://localhost:4000/oauth2/callback';
# CI credential (for headless flows):
# export HD_CI_CREDENTIAL='<long-lived-refresh-token>';
# Performance (optional)
# export CONCURRENT_PAGE_REQUESTS='3';
# export PAGE_SIZE='500';
# Privacy
# export TRACKING_OPT_OUT='true';
# Keyring (optional; for debugging token storage)
# export HD_AUTH_SERVICE_NAME='@herodevs/cli';
# export HD_AUTH_ACCESS_KEY='access-token';
# export HD_AUTH_REFRESH_KEY='refresh-token';