3a14fe8a76
as title
23 lines
616 B
TypeScript
23 lines
616 B
TypeScript
import { type ApplicationConfig } from 'twenty-sdk';
|
|
|
|
const config: ApplicationConfig = {
|
|
universalIdentifier: '4ec0391d-18d5-411c-b2f3-266ddc1c3ef7',
|
|
displayName: 'Hello World',
|
|
description: 'A simple hello world app',
|
|
icon: 'IconWorld',
|
|
applicationVariables: {
|
|
TWENTY_API_KEY: {
|
|
universalIdentifier: 'dedc53eb-9c12-4fe2-ba86-4a2add19d305',
|
|
description: 'Twenty API Key',
|
|
isSecret: true,
|
|
},
|
|
TWENTY_API_URL: {
|
|
universalIdentifier: 'ef8ab489-e68a-4841-b402-261f440e6185',
|
|
description: 'Twenty API Url',
|
|
isSecret: false,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|