This commit is contained in:
Ken
2026-01-19 09:33:35 +07:00
parent 374dc12b2d
commit 70838a4bc1
103 changed files with 16929 additions and 2 deletions

40
config/config.json Normal file
View File

@@ -0,0 +1,40 @@
{
"database": {
"host": "senaai.tech",
"port": 11001,
"username": "root",
"password": "Sena@2026!",
"database": "sena_school_db",
"dialect": "mysql",
"pool": {
"max": 20,
"min": 5,
"acquire": 60000,
"idle": 10000
},
"logging": false,
"timezone": "+07:00"
},
"redis": {
"cluster": [
{
"host": "senaai.tech",
"port": 11010
},
{
"host": "senaai.tech",
"port": 11011
}
],
"password": "Sena@2026!",
"db": 0,
"keyPrefix": "sena:"
},
"server": {
"port" : 4000,
"env": "production"
},
"cors": {
"origin": "*"
}
}