-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy path.env.example
More file actions
27 lines (25 loc) · 1.25 KB
/
.env.example
File metadata and controls
27 lines (25 loc) · 1.25 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
# This file contains environment variables that are used by the example scripts.
# To use the example scripts, you must first copy this file to `.env` and
# replace the placeholder text with your own values.
# To add an API key, do the following:
# 1. Sign into your Iterable account
# 2. Go to [Integrations > API Keys](https://app.iterable.com/settings/apiKeys)
# 3. Click "New API Key" in the top right corner
# 4. Fill in the following fields:
# - Name: A descriptive name for the API key
# - Type: Mobile
# - JWT authentication: Whether or not you want to use JWT
# 5. Click "Create API Key"
# 6. Copy the generated API key and replace the placeholder text next to
# `ITBL_API_KEY=` with the copied API key
# 7. If you chose to enable JWT authentication, copy the JWT secret and and
# replace the placeholder text next to `ITBL_JWT_SECRET=` with the copied
# JWT secret
ITBL_API_KEY=replace_this_with_your_iterable_api_key
# Your JWT Secret, created when making your API key (see above)
ITBL_JWT_SECRET=replace_this_with_your_jwt_secret
# Is your api token JWT Enabled?
# Must be set to 'true' to enable JWT authentication
ITBL_IS_JWT_ENABLED=true
# Your Iterable user ID or email address
ITBL_ID=replace_this_with_your_user_id_or_email