mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
stripe init
git submodules for enterprise modules
This commit is contained in:
parent
290b7d9d94
commit
1ce75492bc
3
.gitmodules
vendored
Normal file
3
.gitmodules
vendored
Normal file
@ -0,0 +1,3 @@
|
||||
[submodule "apps/server/src/ee"]
|
||||
path = apps/server/src/ee
|
||||
url = https://github.com/docmost/ee
|
@ -73,6 +73,7 @@
|
||||
"rxjs": "^7.8.1",
|
||||
"sanitize-filename-ts": "^1.0.2",
|
||||
"socket.io": "^4.8.1",
|
||||
"stripe": "^17.5.0",
|
||||
"ws": "^8.18.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
|
@ -15,6 +15,17 @@ import { HealthModule } from './integrations/health/health.module';
|
||||
import { ExportModule } from './integrations/export/export.module';
|
||||
import { ImportModule } from './integrations/import/import.module';
|
||||
|
||||
const enterpriseModules = [];
|
||||
try {
|
||||
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
||||
if (require('@docmost/ee/ee.module')?.EEModule) {
|
||||
// eslint-disable-next-line @typescript-eslint/no-require-imports
|
||||
enterpriseModules.push(require('@docmost/ee/ee.module')?.EEModule);
|
||||
}
|
||||
} catch (e) {
|
||||
/* empty */
|
||||
}
|
||||
|
||||
@Module({
|
||||
imports: [
|
||||
CoreModule,
|
||||
@ -34,6 +45,7 @@ import { ImportModule } from './integrations/import/import.module';
|
||||
imports: [EnvironmentModule],
|
||||
}),
|
||||
EventEmitterModule.forRoot(),
|
||||
...enterpriseModules,
|
||||
],
|
||||
controllers: [AppController],
|
||||
providers: [AppService],
|
||||
|
1
apps/server/src/ee
Submodule
1
apps/server/src/ee
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 55dfea7f874adfef303376deebac674a63f1f490
|
@ -136,4 +136,16 @@ export class EnvironmentService {
|
||||
isSelfHosted(): boolean {
|
||||
return !this.isCloud();
|
||||
}
|
||||
|
||||
getStripeKey(): string {
|
||||
return this.configService.get<string>('STRIPE_KEY');
|
||||
}
|
||||
|
||||
getStripeSecretKey(): string {
|
||||
return this.configService.get<string>('STRIPE_SECRET');
|
||||
}
|
||||
|
||||
getStripeWebhookSecret(): string {
|
||||
return this.configService.get<string>('STRIPE_WEBHOOK_SECRET');
|
||||
}
|
||||
}
|
||||
|
@ -17,9 +17,10 @@ async function bootstrap() {
|
||||
new FastifyAdapter({
|
||||
ignoreTrailingSlash: true,
|
||||
ignoreDuplicateSlashes: true,
|
||||
maxParamLength: 500,
|
||||
maxParamLength: 1000,
|
||||
}),
|
||||
{
|
||||
rawBody: true,
|
||||
logger: new InternalLogFilter(),
|
||||
},
|
||||
);
|
||||
|
@ -21,7 +21,8 @@
|
||||
"jsx": "react",
|
||||
"paths": {
|
||||
"@docmost/db/*": ["./src/database/*"],
|
||||
"@docmost/transactional/*": ["./src/integrations/transactional/*"]
|
||||
"@docmost/transactional/*": ["./src/integrations/transactional/*"],
|
||||
"@docmost/ee/*": ["./src/ee/*"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
12
pnpm-lock.yaml
generated
12
pnpm-lock.yaml
generated
@ -510,6 +510,9 @@ importers:
|
||||
socket.io:
|
||||
specifier: ^4.8.1
|
||||
version: 4.8.1
|
||||
stripe:
|
||||
specifier: ^17.5.0
|
||||
version: 17.5.0
|
||||
ws:
|
||||
specifier: ^8.18.0
|
||||
version: 8.18.0
|
||||
@ -7926,6 +7929,10 @@ packages:
|
||||
resolution: {integrity: sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==}
|
||||
engines: {node: '>=8'}
|
||||
|
||||
stripe@17.5.0:
|
||||
resolution: {integrity: sha512-kcyeAkDFjGsVl17FqnG7q/+xIjt0ZjOo9Dm+q8deAvs2Xe4iAHrhxyoP4etUVFc+/LZJANjIPVR+ZOnt9hr/Ug==}
|
||||
engines: {node: '>=12.*'}
|
||||
|
||||
strnum@1.0.5:
|
||||
resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
|
||||
|
||||
@ -17480,6 +17487,11 @@ snapshots:
|
||||
|
||||
strip-json-comments@3.1.1: {}
|
||||
|
||||
stripe@17.5.0:
|
||||
dependencies:
|
||||
'@types/node': 22.10.0
|
||||
qs: 6.12.0
|
||||
|
||||
strnum@1.0.5: {}
|
||||
|
||||
styled-jsx@5.1.1(@babel/core@7.24.5)(react@18.3.1):
|
||||
|
Loading…
x
Reference in New Issue
Block a user