Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,15 @@ All state is held in the circuit breaker struct and passed explicitly to each fu
(wst.circuit-breaker:circuit-breaker-record cb nil)
```

#### examples

Load runnable examples with ASDF:

```lisp
(ql:quickload :wst.example.url-shortener)
(ql:quickload :wst.example.bookmark-manager)
```

# license

Unlicense.
Expand Down
16 changes: 16 additions & 0 deletions wst.example.bookmark-manager.asd
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
(asdf:defsystem #:wst.example.bookmark-manager
:description "Runnable wst bookmark manager example application."
:author "Bruno Dias"
:license "Unlicense"
:version "0.0.1"
:depends-on (#:wst.routing
#:wst.routing.dsl
#:wst.routing.woo
#:wst.request-content
#:wst.request-content.routing
#:wst.cookies
#:sqlite
#:woo)
:pathname "examples/bookmark-manager"
:serial t
:components ((:file "main")))
14 changes: 14 additions & 0 deletions wst.example.url-shortener.asd
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
(asdf:defsystem #:wst.example.url-shortener
:description "Runnable wst URL shortener example application."
:author "Bruno Dias"
:license "Unlicense"
:version "0.0.1"
:depends-on (#:wst.routing
#:wst.routing.dsl
#:wst.routing.woo
#:wst.request-content
#:wst.request-content.routing
#:woo)
:pathname "examples/url-shortener"
:serial t
:components ((:file "main")))
Loading