An open API service indexing awesome lists of open source software.

https://github.com/vikjam/doenv

Load environment variables from a local .env file in Stata
https://github.com/vikjam/doenv

dotenv project-management stata

Last synced: 5 months ago
JSON representation

Load environment variables from a local .env file in Stata

Awesome Lists containing this project

README

          

# doenv
Load environment variables from a local .env file in Stata. A simplistic implementation of more sophisticated projects such as [dotenv (Ruby)](https://github.com/bkeepers/dotenv), [python-dotenv](https://github.com/bkeepers/dotenv), [dotenv (R)](https://github.com/gaborcsardi/dotenv) and [DotEnv.jl](https://github.com/vmari/DotEnv.jl).

## Example usage
Load an example .env file.
```{stata}
doenv using ".env"
display "`r(EXAMPLE_API_TOKEN)'"
```

## Installation
```{stata}
net install doenv, from(https://github.com/vikjam/doenv/raw/master/) replace
```