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 "dune" {>= "1.7"} 18] 19synopsis: "Javascript's dotenv port to ocaml" 20description: """ 21This tool allows for the user to keep a file (default `.env`, hence the name) which contains environment variables to be exported when running locally. When deployed, the file will not be available and the variables will be read from the environment, as always. 22 23This is a port of JavaScript's Dotenv (https://github.com/motdotla/dotenv). 24""" 25url { 26 src: 27 "https://github.com/thatportugueseguy/ocaml-dotenv/releases/download/v0.0.1/dotenv-v0.0.1.tbz" 28 checksum: [ 29 "sha256=7d7cb7dd9b428ac3db8f2950add30ff7864eb2bbe0b218d33fec75f00160ab2e" 30 "sha512=3effccc7feec286354d1f942bfbdf8c854ba76bb1bb1ac5e6f060c4a127d0fc87c0f998e389a729c380b11ab969c19256f0fe2ac418077bec6170f05b0eeff6c" 31 ] 32}