-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdotenv.opam
29 lines (26 loc) · 1 KB
/
dotenv.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
opam-version: "2.0"
maintainer: "Jose Nogueira <ze@thatportugueseguy.com>"
authors: [ "Jose Nogueira <ze@thatportugueseguy.com>" ]
license: "BSD-3-clause"
homepage: "https://github.com/thatportugueseguy/ocaml-dotenv"
dev-repo: "git+https://github.com/thatportugueseguy/ocaml-dotenv.git"
bug-reports: "https://github.com/thatportugueseguy/ocaml-dotenv/issues"
doc: "https://thatportugueseguy.github.io/ocaml-dotenv"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.05"}
"base"
"stdio"
"uutf"
"pcre"
"dune" {>= "1.7"}
]
synopsis: "Javascript's dotenv port to OCaml"
description: """
Small lib to allow storing config separate from code.
Dotenv loads variables from a file (named by default `.env`, hence the name) into the application environment. They can be read in `Sys.env`.
This allows for the user to reproduce the deployed environments locally, as if the application was deployed in said environments.
This is a port of JavaScript's Dotenv (https://github.com/motdotla/dotenv).
"""