mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-12 10:50:31 +00:00
6 lines
163 B
TypeScript
6 lines
163 B
TypeScript
import { registerAs } from '@nestjs/config';
|
|
|
|
export default registerAs('cloud', () => ({
|
|
hostedOnCloud: process.env.HOSTED_ON_BIGCAPITAL_CLOUD === 'true',
|
|
}));
|