this repo has no description
1opam-version: "2.0" 2maintainer: "Jose Nogueira <ze@thatportugueseguy.com>" 3authors: [ "Jose Nogueira <ze@thatportugueseguy.com>" ] 4license: "BSD-3-clause" 5homepage: "https://github.com/thatportugueseguy/ocaml-dotenv" 6dev-repo: "git+https://github.com/thatportugueseguy/ocaml-dotenv.git" 7bug-reports: "https://github.com/thatportugueseguy/ocaml-dotenv/issues" 8doc: "https://thatportugueseguy.github.io/ocaml-dotenv" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.05"} 14 "base" {< "v0.17"} 15 "stdio" 16 "uutf" 17 "pcre" 18 "dune" {>= "1.7"} 19] 20synopsis: "Javascript's dotenv port to OCaml" 21description: """ 22Small lib to allow storing config separate from code. 23 24Dotenv loads variables from a file (named by default `.env`, hence the name) into the application environment. They can be read in `Sys.env`. 25 26This allows for the user to reproduce the deployed environments locally, as if the application was deployed in said environments. 27 28This is a port of JavaScript's Dotenv (https://github.com/motdotla/dotenv). 29""" 30url { 31 src: 32 "https://github.com/thatportugueseguy/ocaml-dotenv/releases/download/v0.0.3/dotenv-v0.0.3.tbz" 33 checksum: [ 34 "sha256=b8b0745746db0b8c6dd6bff9de8b89512c657cc5e0d09f9ba29aa5561a07c517" 35 "sha512=de509d75d633ae992bca34bca6a2cf5e49368ba6b4a2ce58c377cd3661cd796ad3b9c3cc341ac827f76b3915495943019e79a90454d8da97f166e25c861da81c" 36 ] 37}