generated from coulomb/repo-seed
- Schema: hubs, widgets, widget_versions, interaction_events (append-only trigger), annotations, users — single migration file - Web layer: Types, Routes, FrontController with auth + AutoRefresh layout - Controllers: Hubs (CRUD), Widgets (CRUD + versioning), InteractionEvents (JSON capture, canonical event_type validation), Annotations (threaded, append-only) - Sessions controller for IHP auth - Views: Hubs (index/show/new/edit), Widgets (index/show/new/edit), Annotations (index/new), Sessions (login) - widgetEnvelope helper with full data-* governance attributes - Integration tests: Hub CRUD, Widget versioning, event capture, append-only guard, annotation threading, validation Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
22 lines
421 B
Haskell
22 lines
421 B
Haskell
module Main where
|
|
import IHP.Prelude
|
|
|
|
import Config
|
|
import qualified IHP.Server
|
|
import IHP.RouterSupport
|
|
import IHP.FrameworkConfig
|
|
import IHP.Job.Types
|
|
import Web.FrontController
|
|
import Web.Types
|
|
|
|
instance FrontController RootApplication where
|
|
controllers =
|
|
[ mountFrontController WebApplication
|
|
]
|
|
|
|
instance Worker RootApplication where
|
|
workers _ = []
|
|
|
|
main :: IO ()
|
|
main = IHP.Server.run config
|