mirror of
https://github.com/LukeHagar/firecamp.git
synced 2025-12-06 12:27:44 +00:00
17 lines
370 B
JavaScript
17 lines
370 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
|
|
};
|
|
|
|
const AppFormat = {
|
|
WebApp: 'webapp',
|
|
Dmg: 'dmg',
|
|
AppImage: 'appImage',
|
|
Snap: 'snap',
|
|
NSIS: 'nsis',
|
|
};
|
|
|
|
module.exports = { Environment, AppFormat };
|