- Updated app/integrated_crm_app.py, build.sh, conf/config.json - Added config.ini, schema.sql, send_email.py, test_db_conn.py - Added full wwwroot/ with bricks framework, all module frontends, login/main UI
37 lines
805 B
JSON
37 lines
805 B
JSON
{
|
|
"password_key": "!@#$%^&*(*&^%$QWERTYUIqwertyui234567",
|
|
"logger": {
|
|
"name": "integrated_crm_app",
|
|
"level": "info",
|
|
"file": "$[workdir]$/logs/app.log"
|
|
},
|
|
"filesroot": "$[workdir]$/files",
|
|
"databases": {
|
|
"crm_db": {
|
|
"driver": "mysql",
|
|
"kwargs": {
|
|
"host": "localhost",
|
|
"port": 3306,
|
|
"user": "hermes",
|
|
"password": "0YqQnMW7FhQkbPHHP3nfMw==",
|
|
"db": "crm_db",
|
|
"charset": "utf8mb4"
|
|
}
|
|
}
|
|
},
|
|
"website": {
|
|
"paths": [
|
|
["$[workdir]$/wwwroot", "/main"],
|
|
["$[workdir]$/wwwroot/bricks", "/bricks"]
|
|
],
|
|
"processors": [
|
|
[".ui", "bui"],
|
|
[".dspy", "dspy"],
|
|
[".tmpl", "tmpl"]
|
|
],
|
|
"session_max_time": 3600,
|
|
"session_issue_time": 1800,
|
|
"client_max_size": 10485760
|
|
}
|
|
}
|