fix: cloud subscription flag

This commit is contained in:
Ahmed Bouhuolia
2025-11-30 22:38:00 +02:00
parent e196d485cf
commit 3648fb3ffc
6 changed files with 21 additions and 5 deletions

View File

@@ -0,0 +1,5 @@
import { registerAs } from '@nestjs/config';
export default registerAs('cloud', () => ({
hostedOnCloud: process.env.HOSTED_ON_BIGCAPITAL_CLOUD === 'true',
}));