Re: Chaining compojure routes

2016-02-13 Thread Alan Moore
For more info on core/context see: https://github.com/weavejester/compojure/wiki/Nesting-routes Alan On Friday, February 12, 2016 at 2:40:30 PM UTC-8, JvJ wrote: > > I'm just starting to use ring/compojure to create web apps. > > One thing I would like to do is have an updatable collection of ap

Re: Chaining compojure routes

2016-02-12 Thread Gregg Reynolds
On Feb 12, 2016 4:40 PM, "JvJ" wrote: > > I'm just starting to use ring/compojure to create web apps. > > One thing I would like to do is have an updatable collection of apps that can be accessed based on the URL input. > > For example, if I have an app named "foo", then website.com/foo would redi

Chaining compojure routes

2016-02-12 Thread JvJ
I'm just starting to use ring/compojure to create web apps. One thing I would like to do is have an updatable collection of apps that can be accessed based on the URL input. For example, if I have an app named "foo", then website.com/foo would redirect to that app. So far, I have the following