-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
26 lines (21 loc) · 829 Bytes
/
Copy path.env.example
File metadata and controls
26 lines (21 loc) · 829 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
# Etsy app credentials
# https://www.etsy.com/developers/your-apps
ETSY_API_KEY=
ETSY_SHARED_SECRET=
# Must exactly match a Callback URL registered on your Etsy app.
# The URL does not need to serve a page; auth/setup.php only reads the
# authorization code out of it.
ETSY_REDIRECT_URI=https://example.com/callback
# Written automatically by auth/setup.php. Leave blank.
ETSY_ACCESS_TOKEN=
ETSY_REFRESH_TOKEN=
SHOP_ID=
# Key used to sign download tokens. Generated by auth/setup.php if left blank;
# an existing value is never overwritten. Minimum 32 characters if you set it
# yourself: php -r "echo bin2hex(random_bytes(32));"
TOKEN_SECRET=
# How many minutes a download link stays valid.
TOKEN_EXPIRY_MINUTES=15
# Writes Etsy API requests and responses to storage/logs/debug.log.
# Keep false in production.
DEBUG=false