You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Chapter or Appendix: 5 Settings and Requirements Files
Section: 5.3 Separate Configuration From Code
Subsection:
5.3.2 How to Set Environment Variables Locally (Page 50)
5.3.3 How to Unset Environment Variables Locally (Page 51)
Description
I have encountered some issues following the sample snippets to set/unset the environment variables in Windows 7 & 10.
After some research, this is what I found:
# Page 50
# Windows 7 & 10 do not have this setx command.
# change setx to set seems to be working though.
setx SOME_SECRET_KEY 1c3-cr3am-15-yummy
# Page 51
# Windows 7 & 10 do not have this unset command.
# Set a variable to empty would take it out of the environment variable list.
# set "SOME_SECRET_KEY=" would unset the environment variable.
unset SOME_SECRET_KEY
The text was updated successfully, but these errors were encountered:
Location within the Book
5.3.2 How to Set Environment Variables Locally (Page 50)
5.3.3 How to Unset Environment Variables Locally (Page 51)
Description
I have encountered some issues following the sample snippets to set/unset the environment variables in Windows 7 & 10.
After some research, this is what I found:
The text was updated successfully, but these errors were encountered: