diff --git a/packages/twenty-docs/l/ko/developers/extend/capabilities/apps.mdx b/packages/twenty-docs/l/ko/developers/extend/capabilities/apps.mdx index b0e4614c83..6924c68767 100644 --- a/packages/twenty-docs/l/ko/developers/extend/capabilities/apps.mdx +++ b/packages/twenty-docs/l/ko/developers/extend/capabilities/apps.mdx @@ -93,13 +93,13 @@ my-twenty-app/ eslint.config.mjs tsconfig.json README.md - public/ # Public assets folder (images, fonts, etc.) + public/ # 공개 자산 폴더(이미지, 폰트 등) src/ - application.config.ts # Required - main application configuration - default-function.role.ts # Default role for serverless functions - hello-world.function.ts # Example serverless function - hello-world.front-component.tsx # Example front component - // your entities (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts) + application.config.ts # 필수 - 기본 애플리케이션 구성 + default-function.role.ts # 서버리스 함수의 기본 역할 + hello-world.function.ts # 서버리스 함수 예제 + hello-world.front-component.tsx # 프런트 컴포넌트 예제 + // 사용자 엔터티 (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts) ``` ### 설정보다 관례 diff --git a/packages/twenty-docs/l/tr/developers/extend/capabilities/apps.mdx b/packages/twenty-docs/l/tr/developers/extend/capabilities/apps.mdx index 7ce411165f..feb98882fe 100644 --- a/packages/twenty-docs/l/tr/developers/extend/capabilities/apps.mdx +++ b/packages/twenty-docs/l/tr/developers/extend/capabilities/apps.mdx @@ -93,13 +93,13 @@ my-twenty-app/ eslint.config.mjs tsconfig.json README.md - public/ # Public assets folder (images, fonts, etc.) + public/ # Genel varlıklar klasörü (görseller, yazı tipleri vb.) src/ - application.config.ts # Required - main application configuration - default-function.role.ts # Default role for serverless functions - hello-world.function.ts # Example serverless function - hello-world.front-component.tsx # Example front component - // your entities (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts) + application.config.ts # Gerekli - ana uygulama yapılandırması + default-function.role.ts # Sunucusuz işlevler için varsayılan rol + hello-world.function.ts # Örnek sunucusuz işlev + hello-world.front-component.tsx # Örnek ön uç bileşeni + // varlıklarınız (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts) ``` ### Sözleşme-öncelikli yapılandırma @@ -163,7 +163,7 @@ Genel hatlarıyla: * **.nvmrc**: Projenin beklediği Node.js sürümünü sabitler. * **eslint.config.mjs** ve **tsconfig.json**: Uygulamanızın TypeScript kaynakları için linting ve TypeScript yapılandırması sağlar. * **README.md**: Uygulama kökünde temel talimatların yer aldığı kısa bir README. -* **public/**: A folder for storing public assets (images, fonts, static files) that will be served with your application. Files placed here are uploaded during sync and accessible at runtime. +* **public/**: Uygulamanızla birlikte sunulacak genel varlıkları (görseller, yazı tipleri, statik dosyalar) depolamak için bir klasör. Buraya yerleştirilen dosyalar senkronizasyon sırasında yüklenir ve çalışma zamanında erişilebilir olur. * **src/**: Uygulamanızı kod olarak tanımladığınız ana yer: * `application.config.ts`: Uygulamanız için genel yapılandırma (meta veriler ve çalışma zamanı bağlantıları). Aşağıda "Uygulama yapılandırması"na bakın. * `*.role.ts`: Mantık fonksiyonlarınız tarafından kullanılan rol tanımları. Aşağıda "Varsayılan fonksiyon rolü"ne bakın. diff --git a/packages/twenty-docs/l/zh/developers/extend/capabilities/apps.mdx b/packages/twenty-docs/l/zh/developers/extend/capabilities/apps.mdx index d7bb1a6d5f..98a793506e 100644 --- a/packages/twenty-docs/l/zh/developers/extend/capabilities/apps.mdx +++ b/packages/twenty-docs/l/zh/developers/extend/capabilities/apps.mdx @@ -93,13 +93,13 @@ my-twenty-app/ eslint.config.mjs tsconfig.json README.md - public/ # Public assets folder (images, fonts, etc.) + public/ # 公共资源文件夹(图像、字体等) src/ - application.config.ts # Required - main application configuration - default-function.role.ts # Default role for serverless functions - hello-world.function.ts # Example serverless function - hello-world.front-component.tsx # Example front component - // your entities (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts) + application.config.ts # 必需 - 主应用程序配置 + default-function.role.ts # 用于无服务器函数的默认角色 + hello-world.function.ts # 示例无服务器函数 + hello-world.front-component.tsx # 示例前端组件 + // 你的实体 (*.object.ts, *.function.ts, *.front-component.tsx, *.role.ts) ``` ### 约定优于配置 @@ -163,7 +163,7 @@ src/ * **.nvmrc**:固定项目期望的 Node.js 版本。 * **eslint.config.mjs** 和 **tsconfig.json**:为应用的 TypeScript 源码提供 Lint 与 TypeScript 配置。 * **README.md**:应用根目录中的简短 README,包含基本说明。 -* **public/**: A folder for storing public assets (images, fonts, static files) that will be served with your application. Files placed here are uploaded during sync and accessible at runtime. +* **public/**: 一个用于存储公共资源(图像、字体、静态文件)的文件夹,这些资源将随你的应用程序一起提供。 放置在此处的文件会在同步期间上传,并可在运行时访问。 * **src/**:你以代码形式定义应用的主要位置: * `application.config.ts`:应用的全局配置(元数据和运行时关联)。 参见下方“应用配置”。 * `*.role.ts`:你的逻辑函数所使用的角色定义。 参见下方“默认函数角色”。