mirror of
https://github.com/RayLabsHQ/gitea-mirror.git
synced 2025-12-08 20:46:44 +03:00
updates
This commit is contained in:
@@ -1,11 +1,12 @@
|
||||
/**
|
||||
* Deployment mode utilities
|
||||
* For the open source self-hosted version
|
||||
* Supports both self-hosted and hosted versions
|
||||
*/
|
||||
|
||||
export const DEPLOYMENT_MODE = 'selfhosted';
|
||||
export const DEPLOYMENT_MODE = process.env.DEPLOYMENT_MODE || 'selfhosted';
|
||||
|
||||
export const isSelfHostedMode = () => true;
|
||||
export const isSelfHostedMode = () => DEPLOYMENT_MODE === 'selfhosted';
|
||||
export const isHostedMode = () => DEPLOYMENT_MODE === 'hosted';
|
||||
|
||||
/**
|
||||
* Feature flags for self-hosted version
|
||||
|
||||
Reference in New Issue
Block a user