mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-22 04:26:23 +08:00
45 lines
1.4 KiB
TypeScript
45 lines
1.4 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 projectRoot: 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;
|
|
}
|
|
}
|