{
    "frame": "sample",
    "server": {
        "port": 3001
    },
    "log": {
        "level": "debug",
        "colorize": true
    },
    "code": {
        "SUCCESS": "1000",
        "EXCEPTION" : "-10000",
        "ERROR": "-9999",
        "ACCESS_DENIED": "-9998",
        "SIGNIN": "-9997",
        "DUPLICATED": "-9996",
        "KEY_UNDEFINED": "-9995",
        "DATA_NOT_FOUND": "-9994"
    },
    "jdbc": {
        "host": "localhost",
        "user": "user",
        "password": "password",
        "database": "database",
        "port": 3306,
        "typeCast": true,
        "multipleStatements": true
    },
    "OAuth": {
        "facebook": {
            "appId": "appId",
            "secret": "secret",
            "callback": "http://localhost:3000/auth/facebook/callback"
        },
        "twitter": {
            "appId": "appId",
            "secret": "secret",
            "callback": "http://localhost:3000/auth/twitter/callback"
        },
        "google": {
            "appId": "appId",
            "secret": "secret",
            "callback": "http://localhost:3000/auth/google/callback"
        }
    },
    "aws": {
        "accessKeyId": "accessKeyId",
        "secretAccessKey": "secretAccessKey",
        "s3": {
            "bucketName": "bucketName",
            "resourcesUrl": "prefixUrl"
        }
    }
}