<alloy> ( responder db -- responder' )
Furnace framework ยป Furnace alloy responder

Next:init-furnace-tables ( -- )


Vocabulary
furnace.alloy

Inputs
respondera responder
dba database descriptor


Outputs
responder'an alloy responder


Word description
Wraps the responder with support for asides, conversations, sessions and database persistence.

Examples
The webapps.counter vocabulary uses an alloy to configure the counter:
: counter-db ( -- db ) "counter.db" <sqlite-db> ; : run-counter ( -- ) <counter-app> counter-db <alloy> main-responder set-global 8080 httpd ;


Definition