Spaces:
Running
Running
File size: 260 Bytes
b39afbe |
1 2 3 4 5 6 7 8 9 10 11 |
/**
* Copyright (c) 2023 MERCENARIES.AI PTE. LTD.
* All rights reserved.
*/
export enum NodeProcessEnv {
development = 'development', // hosted dev stack
staging = 'staging', // hosted staging QA stack
production = 'production' // production stack
}
|