-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
31 lines (24 loc) · 884 Bytes
/
.env.example
File metadata and controls
31 lines (24 loc) · 884 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
30
31
# reqo environment variables
# Active environment for reqo commands (overrides project default when set)
REQO_ENV=
# Convention: Template variables prefer REQO_<KEY> over plain <KEY>.
# Define your values using REQO_ prefix; reqo will fall back to the non‑prefixed
# variable if the REQO_ version is not set.
# Authentication and API keys (examples used in README and header sets)
REQO_TOKEN=
REQO_API_TOKEN=
REQO_API_KEY=
# User / metadata examples
REQO_USER=
REQO_VERSION=
# Common header variable examples
REQO_user_id=
REQO_api_version=
REQO_env_name=
REQO_request_id=
# GraphQL examples (if you template these via vars/env)
REQO_query=
REQO_variables=
# You can add any other REQO_<KEY> variables and reference them in templates as
# ${KEY}. For example, set REQO_FOO=bar and use ${FOO} in paths, headers, or
# bodies; reqo will expand it from REQO_FOO first, then FOO.