You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, as Clojure is a great functional language (of the lisp family, you know with lot of parenthesis), I was thinking of adding a template for it in OpenFaaS.
Some of the benefits of Clojure:
based on Lisp
relies on the standard JVM platform
use JVM but do not have to write Java code :)
real functional language with immutable data structures
Those dependencies are installed with 'lein deps'.
To benefit from the cache when building the image, the deps can be downloaded and installed beforehand. The application can then be built and run as a jar.
The text was updated successfully, but these errors were encountered:
Hi, as Clojure is a great functional language (of the lisp family, you know with lot of parenthesis), I was thinking of adding a template for it in OpenFaaS.
Some of the benefits of Clojure:
When building an application, the project.clj file defines the dependencies. It contains metadata and deps. For instance:
Those dependencies are installed with 'lein deps'.
To benefit from the cache when building the image, the deps can be downloaded and installed beforehand. The application can then be built and run as a jar.
The text was updated successfully, but these errors were encountered: