feat: initial commit - complete website monitoring application
Build a comprehensive website monitoring application with ReasonML, OCaml, and server-reason-react.
Features:
- Real-time website monitoring with HTTP status checks
- Email and webhook alerting system
- Beautiful admin dashboard with Tailwind CSS
- Complete REST API for CRUD operations
- Background monitoring scheduler
- Multi-container Docker setup with 1-core CPU constraint
- PostgreSQL database with Caqti
- Full documentation and setup guides
Tech Stack:
- OCaml 5.0+ with ReasonML
- Dream web framework
- server-reason-react for UI
- PostgreSQL 16 database
- Docker & Docker Compose
Files:
- 9 OCaml source files (1961 LOC)
- 6 documentation files (1603 LOC)
- Complete Docker configuration
- Comprehensive API documentation
💘 Generated with Crush
This commit is contained in:
60
.gitignore
vendored
Normal file
60
.gitignore
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
# OCaml
|
||||
*.cmo
|
||||
*.cmi
|
||||
*.cma
|
||||
*.cmx
|
||||
*.cmxs
|
||||
*.cmxa
|
||||
*.a
|
||||
*.o
|
||||
*.so
|
||||
*.ml~
|
||||
*.mli~
|
||||
*.a
|
||||
*.lib
|
||||
*.obj
|
||||
*.cmt
|
||||
*.cmti
|
||||
*.annot
|
||||
*.spot
|
||||
*.spit
|
||||
*.bc
|
||||
*.opt
|
||||
|
||||
# Dune
|
||||
_build/
|
||||
*.install
|
||||
*.merlin
|
||||
|
||||
# OPAM
|
||||
*.opam.locked
|
||||
_node_modules/
|
||||
esy.lock
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Environment
|
||||
.env
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# Logs
|
||||
logs/
|
||||
*.log
|
||||
|
||||
# Database
|
||||
*.db
|
||||
*.sqlite
|
||||
|
||||
# Temporary
|
||||
tmp/
|
||||
temp/
|
||||
Reference in New Issue
Block a user