从Luminus 文档中,我看到在创建 Luminus 应用程序时有一个名为 h2 的选项:
lein new luminus guestbook +h2
如何查看所有可用选项?
这不是一个完整的答案,但似乎只需要传递一个错误的属性,至少在 luminus 的情况下,才能获取属性列表:
$ lein new luminus meh +meh
Unrecognized options: +mhe
Supported options are: +immutant, +site, +h2, +dailycred, +cljs, +sassc, +swagger, +auth, +http-kit, +cucumber, +aleph, +mongodb, +postgres, +mysql
您可以使用以下命令:
lein new :show <template>
不幸的是,如果模板函数不提供 doc 字符串并使用 rest args 或选项映射,您将不会从中得到太多,并且可能需要检查模板的来源。
使用 .检查new
任务的整个帮助lein help new
。