-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.sample.env
35 lines (29 loc) · 823 Bytes
/
.sample.env
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
# Website URL
WEBSITE_URL=
# Basic Credential
USERNAME=
PASSWORD=
# Discord webhook
WEBHOOK_URL=
# Login Dialogue
# Outer box form wrapper, default "body" element
FORM_WRAPPER=
# Username/Email input form, default 'input[type="text"]'
INPUT_USERNAME=
# Password input form, default 'input[type="password"]'
INPUT_PASSWORD=
# Submit button, default 'button[type="submit"]'
BUTTON_SUBMIT=
# Success Indicator
# Success indicator elements, separated with commas
# Example: body,input,ul,li
# Or: body, input, ul, li
# Default: ['body']
SUCCESS_INDICATOR_ELEMENTS=
# Logout Dialogue
# Logout Box element, optional if you want logout feature
LOGOUT_BOX=
# Logout Button element, optional if you want logout feature
LOGOUT_BUTTON=
# Confirm Logout Button element, optional if you want logout feature
CONFIRM_LOGOUT_BUTTON=