-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.example
More file actions
43 lines (35 loc) · 1.88 KB
/
.env.example
File metadata and controls
43 lines (35 loc) · 1.88 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
# Example env file for SDK live verification.
# Copy values into `.env`, or resolve them directly with:
# export OP_SERVICE_ACCOUNT_TOKEN="<service-account-token>"
# op run --env-file=.env.example -- <command>
#
# Values can be plain strings or 1Password `op://...` references.
# Required for token bootstrap.
PUTIO_TEST_USERNAME="op://<vault>/<primary-account>/username"
PUTIO_TEST_PASSWORD="op://<vault>/<primary-account>/password"
PUTIO_CLIENT_ID_FIRST_PARTY="op://<vault>/<first-party-client>/username"
PUTIO_CLIENT_SECRET_FIRST_PARTY="op://<vault>/<first-party-client>/password"
# Optional for accounts that require TOTP during first-party bootstrap.
# Set either a literal code or a refreshable reference.
# PUTIO_TEST_TOTP="123456"
# PUTIO_TEST_TOTP_REFERENCE="op://<vault>/<primary-account>/one-time password"
# Optional second account for invite and family flows.
# PUTIO_TEST_SECONDARY_USERNAME="op://<vault>/<secondary-account>/username"
# PUTIO_TEST_SECONDARY_PASSWORD="op://<vault>/<secondary-account>/password"
# PUTIO_TEST_SECONDARY_TOTP="123456"
# PUTIO_TEST_SECONDARY_TOTP_REFERENCE="op://<vault>/<secondary-account>/one-time password"
# Optional runtime token persistence and hydration.
# Tokens can be hydrated from a shared 1Password runtime item.
# PUTIO_1PASSWORD_RUNTIME_ITEM_ID="<runtime_item_id>"
# PUTIO_1PASSWORD_RUNTIME_VAULT="<runtime_vault>"
# Optional pre-existing third-party app id for bootstrap reuse.
# PUTIO_CLIENT_ID_THIRD_PARTY="123456"
# Optional direct live tokens if you already have them.
# PUTIO_TOKEN_FIRST_PARTY="<first_party_token>"
# PUTIO_TOKEN_THIRD_PARTY="<third_party_token>"
# Optional third-party app id consumed by some live tests.
# Usually hydrated automatically from runtime tokens.
# PUTIO_CLIENT_ID="123456"
# Optional legacy aliases still supported by the live harness.
# PUTIO_AUTH_TOKEN="<first_party_token>"
# PUTIO_OAUTH_TOKEN="<third_party_token>"