Created
February 18, 2019 16:04
-
-
Save hawkeye64/b157321c4ce6170c5e8d2af60dbc91c0 to your computer and use it in GitHub Desktop.
dotenv prompts.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function () { | |
return [ | |
{ | |
type: 'input', | |
name: 'env_development', | |
message: "Name of .env for development:", | |
default: ".env" | |
}, | |
{ | |
type: 'input', | |
name: 'env_production', | |
message: "Name of .env for production:", | |
default: ".env" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment