## Summary Rename "Serverless Function" to "Logic Function" across the codebase for clearer naming. ### Environment Variable Changes | Old | New | |-----|-----| | `SERVERLESS_TYPE` | `LOGIC_FUNCTION_TYPE` | | `SERVERLESS_LAMBDA_REGION` | `LOGIC_FUNCTION_LAMBDA_REGION` | | `SERVERLESS_LAMBDA_ROLE` | `LOGIC_FUNCTION_LAMBDA_ROLE` | | `SERVERLESS_LAMBDA_SUBHOSTING_URL` | `LOGIC_FUNCTION_LAMBDA_SUBHOSTING_URL` | | `SERVERLESS_LAMBDA_ACCESS_KEY_ID` | `LOGIC_FUNCTION_LAMBDA_ACCESS_KEY_ID` | | `SERVERLESS_LAMBDA_SECRET_ACCESS_KEY` | `LOGIC_FUNCTION_LAMBDA_SECRET_ACCESS_KEY` | ### Breaking Changes - Environment variables must be updated in production deployments - Database migration renames `serverlessFunction` → `logicFunction` tables
46 lines
1.3 KiB
JSON
46 lines
1.3 KiB
JSON
{
|
|
"$schema": "https://json.schemastore.org/nest-cli",
|
|
"collection": "@nestjs/schematics",
|
|
"sourceRoot": "src",
|
|
"watchOptions": {
|
|
"ignored": ["**/node_modules/**", "**/dist/**", "**/.git/**", "**/.nx/**"]
|
|
},
|
|
"compilerOptions": {
|
|
"builder": "swc",
|
|
"typeCheck": false,
|
|
"watchAssets": true,
|
|
"assets": [
|
|
{
|
|
"include": "engine/core-modules/logic-function-executor/drivers/constants/seed-project/**",
|
|
"outDir": "dist/assets"
|
|
},
|
|
{
|
|
"include": "engine/core-modules/logic-function-executor/drivers/layers/*/package.json",
|
|
"outDir": "dist/assets"
|
|
},
|
|
{
|
|
"include": "engine/core-modules/logic-function-executor/drivers/layers/*/yarn.lock",
|
|
"outDir": "dist/assets"
|
|
},
|
|
{
|
|
"include": "engine/core-modules/logic-function-executor/drivers/layers/engine/**",
|
|
"outDir": "dist/assets"
|
|
},
|
|
{
|
|
"include": "engine/core-modules/logic-function-executor/drivers/constants/executor/index.mjs",
|
|
"outDir": "dist/assets"
|
|
},
|
|
{
|
|
"include": "database/clickHouse/migrations/*.sql",
|
|
"outDir": "dist"
|
|
},
|
|
{
|
|
"include": "engine/workspace-manager/dev-seeder/data/sample-files/**",
|
|
"outDir": "dist/assets"
|
|
}
|
|
]
|
|
},
|
|
"monorepo": false,
|
|
"root": "src"
|
|
}
|