1574 extensibility twenty cli use workspace migration v2 to synchronize serverless function triggers (#14830)
twenty-cli serverless triggers follow up. Fixes: - eventName don't support wildcard - universalIdentifier not used to create or update trigger : update does not work properly (does deletion then creation) - add a base project in twenty-cli that is copied when creating a new app
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
import { join } from 'path';
|
||||
|
||||
export const BASE_APPLICATION_PROJECT_PATH = join(
|
||||
__dirname,
|
||||
'../constants/base-application-project',
|
||||
);
|
||||
Binary file not shown.
Vendored
Executable
+942
File diff suppressed because one or more lines are too long
@@ -0,0 +1,3 @@
|
||||
yarnPath: .yarn/releases/yarn-4.9.2.cjs
|
||||
|
||||
nodeLinker: node-modules
|
||||
@@ -0,0 +1,15 @@
|
||||
# {title}
|
||||
|
||||
{description}
|
||||
|
||||
## Development
|
||||
|
||||
```bash
|
||||
twenty app dev --path {appDir}
|
||||
```
|
||||
|
||||
### Deployment
|
||||
|
||||
```bash
|
||||
twenty app sync --path {appDir}
|
||||
```
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"version": "0.0.1",
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
"node": "^24.5.0",
|
||||
"npm": "please-use-yarn",
|
||||
"yarn": ">=4.0.2"
|
||||
},
|
||||
"packageManager": "yarn@4.9.2"
|
||||
}
|
||||
Reference in New Issue
Block a user