mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-09-01 22:29:44 +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>
85 lines
2.3 KiB
TypeScript
85 lines
2.3 KiB
TypeScript
/* eslint-disable @typescript-eslint/no-non-null-assertion */
|
|
// Custom configurations for AFFiNE Cloud
|
|
// ====================================================================================
|
|
// Q: WHY THIS FILE EXISTS?
|
|
// A: AFFiNE deployment environment may have a lot of custom environment variables,
|
|
// which are not suitable to be put in the `affine.ts` file.
|
|
// For example, AFFiNE Cloud Clusters are deployed on Google Cloud Platform.
|
|
// We need to enable the `gcloud` plugin to make sure the nodes working well,
|
|
// but the default selfhost version may not require it.
|
|
// So it's not a good idea to put such logic in the common `affine.ts` file.
|
|
//
|
|
// ```
|
|
// if (AFFiNE.deploy) {
|
|
// AFFiNE.plugins.use('gcloud');
|
|
// }
|
|
// ```
|
|
// ====================================================================================
|
|
const env = process.env;
|
|
|
|
AFFiNE.metrics.enabled = !AFFiNE.node.test;
|
|
|
|
if (env.R2_OBJECT_STORAGE_ACCOUNT_ID) {
|
|
AFFiNE.use('cloudflare-r2', {
|
|
accountId: env.R2_OBJECT_STORAGE_ACCOUNT_ID,
|
|
credentials: {
|
|
accessKeyId: env.R2_OBJECT_STORAGE_ACCESS_KEY_ID!,
|
|
secretAccessKey: env.R2_OBJECT_STORAGE_SECRET_ACCESS_KEY!,
|
|
},
|
|
});
|
|
AFFiNE.storages.avatar.provider = 'cloudflare-r2';
|
|
AFFiNE.storages.avatar.bucket = 'account-avatar';
|
|
AFFiNE.storages.avatar.publicLinkFactory = key =>
|
|
`https://avatar.affineassets.com/${key}`;
|
|
|
|
AFFiNE.storages.blob.provider = 'cloudflare-r2';
|
|
AFFiNE.storages.blob.bucket = `workspace-blobs-${
|
|
AFFiNE.affine.canary ? 'canary' : 'prod'
|
|
}`;
|
|
|
|
AFFiNE.use('copilot', {
|
|
storage: {
|
|
provider: 'cloudflare-r2',
|
|
bucket: `workspace-copilot-${AFFiNE.affine.canary ? 'canary' : 'prod'}`,
|
|
},
|
|
});
|
|
}
|
|
|
|
AFFiNE.use('copilot', {
|
|
openai: {
|
|
apiKey: '',
|
|
},
|
|
fal: {
|
|
apiKey: '',
|
|
},
|
|
});
|
|
AFFiNE.use('redis', {
|
|
host: env.REDIS_SERVER_HOST,
|
|
db: 0,
|
|
port: 6379,
|
|
username: env.REDIS_SERVER_USER,
|
|
password: env.REDIS_SERVER_PASSWORD,
|
|
});
|
|
AFFiNE.use('payment', {
|
|
stripe: {
|
|
keys: {
|
|
// fake the key to ensure the server generate full GraphQL Schema even env vars are not set
|
|
APIKey: '1',
|
|
webhookKey: '1',
|
|
},
|
|
},
|
|
});
|
|
AFFiNE.use('oauth');
|
|
|
|
if (AFFiNE.deploy) {
|
|
AFFiNE.mailer = {
|
|
service: 'gmail',
|
|
auth: {
|
|
user: env.MAILER_USER,
|
|
pass: env.MAILER_PASSWORD,
|
|
},
|
|
};
|
|
|
|
AFFiNE.use('gcloud');
|
|
}
|