Merge pull request #2316 from serverless/mthenw-typo

fix typo in env vars docs
This commit is contained in:
Florian Motlik 2016-10-11 21:53:27 +02:00 committed by GitHub
commit c804ebd1dd

View File

@ -10,11 +10,11 @@ Environment variables are a very important and often requested feature in Server
## Javascript
You can use [dotenv](https://www.npmjs.com/package/dotenv) to to load files with environment variables. Those variables can be set during your CI process or locally and then packaged and deployed together with your function code.
You can use [dotenv](https://www.npmjs.com/package/dotenv) to load files with environment variables. Those variables can be set during your CI process or locally and then packaged and deployed together with your function code.
## Python
You can use [python-dotenv](https://github.com/theskumar/python-dotenv) to to load files with environment variables. Those variables can be set during your CI process or locally and then packaged and deployed together with your function code.
You can use [python-dotenv](https://github.com/theskumar/python-dotenv) to load files with environment variables. Those variables can be set during your CI process or locally and then packaged and deployed together with your function code.
## Java