· 5 years ago · Jan 27, 2020, 08:46 PM
1from collections import OrderedDict
2MAX_USERS = None
3SITE_URL = 'http://127.0.0.1:8000'
4IIS_APP_NAME = None
5
6WSCONFIG = {
7}
8
9DBCONFIG = {}
10
11COMPANY_LIST = OrderedDict([
12 ('1', 'Intelisis'),
13 ('2', 'Prueba'),
14])
15
16DBCONFIG['default'] = {
17 'ENGINE': 'sqlserver_pymssql',
18 'NAME': 'capacitacion',
19 'USER': 'Sa',
20 'PASSWORD': 'Sa123Admin',
21 'HOST': "127.0.0.1",
22 'OPTIONS': {
23 'port': 8000,
24 },
25}
26
27DBCONFIG['erp'] = {
28 'ENGINE': 'sqlserver_pymssql',
29 'NAME': '...',
30 'USER': '...',
31 'PASSWORD': '...',
32 'HOST': '',
33 'OPTIONS': {
34 'port': '',
35 },
36}
37
38MAPS_KEY = 'AIzaSyChBzYvvhFMn--AGpc4JV_sCgma5hW-XwI'
39
40MAIL_CONF = {
41 'smtp_server': 'smtp.gmail.com',
42 'smtp_username': 'pruebas@opalo.com.co',
43 'smtp_port': 587,
44 'smtp_security': 'TLS',
45 'global_mailconf': True,
46 'pass': 'DeV.2016'
47}
48
49GENERIC_RELATION_SCHEDULER = True
50
51MAILCHIMP_CONF = {
52 "username": "pruebas_opalo",
53 "secret_key": "768e24db4f299b9d98d4bd1f4c958e07-us17",
54 "contact": {
55 "company": "Opal Group",
56 "address1": "Cra 2 bis oeste # 12 - 08",
57 "city": "Cali",
58 "state": "",
59 "zip": "(+57)",
60 "country": "CO",
61 "phone": ""
62 },
63 "permission_reminder": '*Usted recibe este correo porque hace parte de nuestros clientes frecuentes. Si no desea recibir más información por favor responder un e-mail bajo el asunto "No" o de clic in unsubscribe from this list*',
64 "campaign_defaults": {
65 "from_name": "CRM Opal Group",
66 "from_email": "noreply@opalo.com.co",
67 "subject": "CRM",
68 "language": "es"
69 }
70}
71
72SSL_PORTS = []