feat: Implement draft version of the code execution app

This commit is contained in:
Faruk AYDIN
2024-07-29 16:02:15 +02:00
committed by Ali BARIN
parent 09d3a06b27
commit c99b9dbe0a
8 changed files with 585 additions and 4 deletions

View File

@@ -0,0 +1,14 @@
import defineApp from '../../helpers/define-app.js';
import actions from './actions/index.js';
export default defineApp({
name: 'Code',
key: 'code',
baseUrl: '',
apiBaseUrl: '',
iconUrl: '{BASE_URL}/apps/code/assets/favicon.svg',
authDocUrl: '{DOCS_URL}/apps/code/connection',
primaryColor: '000000',
supportsConnections: false,
actions,
});