32 lines
812 B
Plaintext
32 lines
812 B
Plaintext
opam-version: "2.0"
|
|
synopsis: "Website monitoring application with alerts"
|
|
description: "Monitor websites for HTTP 200 status deviations with admin dashboard and API"
|
|
maintainer: ["Your Name <your.email@example.com>"]
|
|
authors: ["Your Name <your.email@example.com>"]
|
|
license: "MIT"
|
|
homepage: "https://github.com/username/website_monitor"
|
|
bug-reports: "https://github.com/username/website_monitor/issues"
|
|
depends: [
|
|
"ocaml" {>= "5.0"}
|
|
"dune" {>= "3.11"}
|
|
"dream"
|
|
"caqti" {>= "2.1"}
|
|
"caqti-lwt"
|
|
"lwt" {>= "5.6"}
|
|
"lwt_ppx"
|
|
"yojson" {>= "2.1"}
|
|
"cohttp-lwt-unix" {>= "5.0"}
|
|
"cmdliner"
|
|
"ipaddr"
|
|
"ptime"
|
|
"fmt"
|
|
"logs" {>= "0.7"}
|
|
"angstrom"
|
|
"base64"
|
|
]
|
|
build: [
|
|
["dune" "subst"] {dev}
|
|
["dune" "build" "-p" name "-j" jobs]
|
|
]
|
|
dev-repo: "git+https://github.com/username/website_monitor.git"
|