Files
firecamp/scripts/environment.js
2022-10-07 23:06:50 +05:30

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;