This commit is contained in:
2024-11-26 13:19:48 +07:00
commit df875117b0
31 changed files with 1273 additions and 0 deletions

24
config/default.json Normal file
View File

@ -0,0 +1,24 @@
{
"app": {
"name": "Service Name",
"description": "Description of service",
"version": "1.0.0"
},
"server": {
"port": "4001",
"host": "0.0.0.0",
"host_swagger": "127.0.0.1",
"max_body": "50mb",
"max_upload": 104857600,
"morgan": "combined",
"cors": "*"
},
"database": {
"engine": "postgres",
"host": "127.0.0.1",
"port": "5432",
"username": "postgres",
"password": "123",
"database": "bri-erp"
}
}

0
config/prod.json Normal file
View File

24
config/stag.json Normal file
View File

@ -0,0 +1,24 @@
{
"app": {
"name": "Service Name",
"description": "Description of service",
"version": "1.0.0"
},
"server": {
"port": "4001",
"host": "0.0.0.0",
"host_swagger": "127.0.0.1",
"max_body": "50mb",
"max_upload": 104857600,
"morgan": "combined",
"cors": "*"
},
"database": {
"engine": "postgres",
"host": "127.0.0.1",
"port": "5432",
"username": "postgres",
"password": "r00t@dm1n05",
"database": "bri-erp"
}
}