mirror of
https://github.com/LukeHagar/firecamp.git
synced 2025-12-06 12:27:44 +00:00
9 lines
241 B
JavaScript
9 lines
241 B
JavaScript
const Environment = {
|
|
Development: 'development',
|
|
Staging: 'staging', // staging will be for testing purpose
|
|
Production: 'production',
|
|
Canary: 'canary', // Canary is production but for early adopter
|
|
};
|
|
|
|
module.exports = Environment;
|