-
Hi.
Current Cursive doesn't seem to be able to resolve (macro-)generated Vars, even when REPL is running. Some examples:
- camel-snake-kebab - https://github.com/qerub/camel-snake-kebab/blob/stable/s…
-
How do you change the default context of `swagger-ui` (default is "/") and include a static resource handler under the same?
The following, for example, doesn't work:
``` clojure
(defroutes static…
-
I haven't been able to add a description to a path param, I tried the following but didn't work:
``` clj
(GET* "/:id" []
:path-params [id :- (field String {:description "unique identifier"})]
.…
-
It would be nice to be able to specify required parameters in the headers similar to how they are specified for query-parameters and body-parameters.
Contrived Example:
```
(POST* "/" []
…
-
1. Generate war
`lein ring uberwar`
2. Deploy war to tomcat or some other server
`sudo cp target/examples.jar /var/lib/tomcat/webapps/examples.war`
3. Access pizza api `http://localhost:18080/e…
-
For example in https://github.com/metosin/compojure-api-examples/blob/master/src/compojure/api/examples/handler.clj the order of routes (swaggered blocks) is math, echo and pizza. But in generated …