mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-25 14:28:51 +08:00
638fc62601
--- <details open="true"><summary>Generated summary (powered by <a href="https://app.graphite.dev">Graphite</a>)</summary> > ## TL;DR > This pull request adds a new migration file, a new model, and new modules related to runtime settings. It also introduces a new `Runtime` service that allows getting, setting, and updating runtime configurations. > > ## What changed > - Added a new migration file `migration.sql` that creates a table called `application_settings` with columns `key` and `value`. > - Added a new model `ApplicationSetting` with properties `key` and `value`. > - Added a new module `RuntimeSettingModule` that exports the `Runtime` service. > - Added a new service `Runtime` that provides methods for getting, setting, and updating runtime configurations. > - Modified the `app.module.ts` file to import the `RuntimeSettingModule`. > - Modified the `index.ts` file in the `fundamentals` directory to export the `Runtime` service. > - Added a new file `def.ts` in the `runtime` directory that defines the runtime configurations and provides a default implementation. > - Added a new file `service.ts` in the `runtime` directory that implements the `Runtime` service. > > ## How to test > 1. Run the migration script to create the `application_settings` table. > 2. Use the `Runtime` service to get, set, and update runtime configurations. > 3. Verify that the runtime configurations are stored correctly in the database and can be retrieved and modified using the `Runtime` service. > > ## Why make this change > This change introduces a new feature related to runtime settings. The `Runtime` service allows the application to dynamically manage and modify runtime configurations without requiring a restart. This provides flexibility and allows for easier customization and configuration of the application. </details>
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
import type { LeafPaths } from '../utils/types';
|
|
import { AppStartupConfig } from './types';
|
|
|
|
export type EnvConfigType = 'string' | 'int' | 'float' | 'boolean';
|
|
export type ServerFlavor = 'allinone' | 'graphql' | 'sync';
|
|
export type AFFINE_ENV = 'dev' | 'beta' | 'production';
|
|
export type NODE_ENV = 'development' | 'test' | 'production';
|
|
|
|
export enum DeploymentType {
|
|
Affine = 'affine',
|
|
Selfhosted = 'selfhosted',
|
|
}
|
|
|
|
export type ConfigPaths = LeafPaths<AppStartupConfig, '', '......'>;
|
|
|
|
export interface PreDefinedAFFiNEConfig {
|
|
ENV_MAP: Record<string, ConfigPaths | [ConfigPaths, EnvConfigType?]>;
|
|
serverId: string;
|
|
serverName: string;
|
|
readonly AFFINE_ENV: AFFINE_ENV;
|
|
readonly NODE_ENV: NODE_ENV;
|
|
readonly version: string;
|
|
readonly type: DeploymentType;
|
|
readonly isSelfhosted: boolean;
|
|
readonly flavor: { type: string; graphql: boolean; sync: boolean };
|
|
readonly affine: { canary: boolean; beta: boolean; stable: boolean };
|
|
readonly node: { prod: boolean; dev: boolean; test: boolean };
|
|
readonly deploy: boolean;
|
|
}
|
|
|
|
export interface AppPluginsConfig {}
|
|
|
|
export type AFFiNEConfig = PreDefinedAFFiNEConfig &
|
|
AppStartupConfig &
|
|
AppPluginsConfig;
|
|
|
|
declare global {
|
|
// eslint-disable-next-line @typescript-eslint/no-namespace
|
|
namespace globalThis {
|
|
// eslint-disable-next-line no-var
|
|
var AFFiNE: AFFiNEConfig;
|
|
}
|
|
}
|