Created
November 9, 2017 14:14
-
-
Save alizhdanov/6946b3f409c88aea992abc7f5022ced3 to your computer and use it in GitHub Desktop.
Set environment variables
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
// to set/create variable use export | |
export NODE_ENV=development | |
// to get variable use echo and $ prefix | |
echo $NODE_ENV | |
// will return 'development' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment