-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.py
33 lines (26 loc) · 885 Bytes
/
settings.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
parameters = {
"site_name" : "User registration sytem",
"site_url" : "http://localhost:5000",
"facebook_app_id": "158*************",
"mysql_settings" : {
"db" : "course",
"host" : "127.0.0.1",
"port" : 3306,
"user" : "root",
"passwd": "*************"
},
"email_settings" : {
"server_host" : "in-v3.mailjet.com",
"server_pass" : "e13*************",
"server_port" : 587,
"server_login": "6dd*************",
"from_adr" : "Mysite <*************@gmail.com>"
},
"session_opts" : {
"session.type" : "cookie",
"session.cookie_expires": 30,
"session.key" : "mysite",
"session.secret" : "jfT*************",
"session.validate_key" : "jf6*************"
}
}