Skip to content

Commit 01e514c

Browse files
committed
.
1 parent 9a0d35b commit 01e514c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

flask.rst

+5-2
Original file line numberDiff line numberDiff line change
@@ -354,15 +354,18 @@ To do this, in Mac/Linux, we can store the env variable in a .bash_profile.
354354
# add new environment variable
355355
export SECRET_KEY="key"
356356
# restart bash_profile
357-
source .bash_profile
357+
source ~/.bash_profile
358+
359+
360+
# we can test by printing it in the console
361+
echo $SECRET_KEY
358362
359363
360364
In the flask script, we can then obtain the variable by using the os package.
361365

362366
.. code:: python
363367
364368
import os
365-
366369
SECRET_KEY = os.environ.get("SECRET_KEY")
367370
368371

0 commit comments

Comments
 (0)