我得到了带有环库的 clojure 项目。这是 project.clj:
(defproject words "1.0.0-SNAPSHOT"
:description "Websocket handler for sessions"
:dependencies [[org.clojure/clojure "1.4.0"]
[org.clojure/clojure-contrib "1.2.0"]
[aleph "0.3.0-alpha1"]
[org.clojure/data.json "0.1.2"]
[clj-redis "0.0.13-SNAPSHOT"]
[compojure "0.6.2"]
[clj-http "0.1.3"]]
:main words.play
;; Lein ring plugin will provide `lein ring server` functionality
;; (and some other relative to ring actions)
:plugins [[lein-ring "0.6.6"]]
:ring {:handler words.api/engine})
在开发环境中,我使用 2 个命令运行它: lein run server lein ring server 并且它可以工作。
对于生产环境,我想最小化依赖关系并将其构建到独立的 jar 中:
lein uberjar
如何构建它并从一个 jar 文件运行两台服务器?