-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathconfigs.py
42 lines (35 loc) · 1.05 KB
/
configs.py
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
from data.data_for_auth import (
JWT_SECRET,
DEFAULT_PASSWORD,
password2,
gmail_password,
gmail_password2,
password,
)
HOST = "https://iced-latte.uk/backend"
# data for creating user#1
email = "[email protected]"
password = password
firstName = "TestUser"
lastName = "TestUser"
EMAIL_DOMAIN = "gmail.com"
EMAIL_LOCAL_PART = "icedlate.test+"
# DATA to connect to the qmail on imap.gmail.com server for user#1
gmail_password = gmail_password
imap_server = "imap.gmail.com"
email_address_to_connect = "[email protected]"
# data for creating user#2
email2 = "[email protected]"
password2 = password2
firstName2 = "TestUser"
lastName2 = "TestUser"
EMAIL_DOMAIN2 = "gmail.com"
EMAIL_LOCAL_PART2 = "icedlate2.test+"
# DATA to connect to the qmail on imap.gmail.com server for user#2
gmail_password2 = gmail_password2
imap_server2 = "imap.gmail.com"
email_address_to_connect2 = "[email protected]"
# iced-late mail
email_iced_late = "[email protected]"
DEFAULT_PASSWORD = DEFAULT_PASSWORD
JWT_SECRET = JWT_SECRET