luminus icon indicating copy to clipboard operation
luminus copied to clipboard

documentation site for Luminus framework

Results 29 luminus issues
Sort by recently updated
recently updated
newest added

There's a link to http://www.luminusweb.net/docs/database.md in the home.html file for a new luminus default project. But this page doesn't seem to exist anymore?

It has been our team's experience that WildFly deployment using immutant has been broken since Java 11, c/o https://issues.redhat.com/browse/IMMUTANT-645 , and immutant itself has been deprecated and undeveloped since 2018....

To interactively create a new migration, https://luminusweb.com/docs/migrations.html tells you to do this: ``` (mount.core/start #'.db.core/*db*) (user/create-migration "add-users-table") ``` I can not get this to work. Fresh sample project created this...

I created a new app by using `lein new luminus myapp +war` and created a WAR file using `lein uberwar` After deployment in a Tomcat 9.0.43 instance you get a...

I've pushed a Luminus playground app to Heroku and have enabled SSL using ````heroku ps:type hobby```` I'd now like to force SSL which [needs to be done at the application...

I am making a request with the following :params: {:user/foo 1 ;user/bar 2}. However, when the request is received by the Luminus app, the query string doesn’t contain the keyword...

Im using luminus with +cljs and it is my understanding that this gives me two repls, one from lein figwheel wich gives my ClojureScript and one from lein run for...

https://luminusweb.com/docs/routes.html > We can now wrap the route groups we wish to be private using the wrap-restricted middleware in the .handler/app function: > > (def app > (-> (routes >...

https://devcenter.heroku.com/articles/exec#environment-variables as you can see here, heroku doesn't apply environment variable when using ssh tunnel. so if you set `NREPL_PORT` through `heroku config` it will be disabled and remote repl...

I am trying to access my Swagger service endpoints. Here is the code: ``` (defn service-routes [] ["/api" {:middleware [middleware/wrap-formats] :swagger {:id ::api}} ["" {:no-doc true} ["/swagger.json" {:get (swagger/create-swagger-handler)}] ["/swagger-ui*"...

question