您如何列出 Leiningen 模板的选项?
How do you list of the options of a Leiningen template?
从 Luminus documentation 我看到创建 Luminus 应用程序时有一个名为 h2 的选项:
lein new luminus guestbook +h2
如何查看所有可用选项?
您可以使用以下命令:
lein new :show <template>
不幸的是,如果模板函数不提供文档字符串并使用 rest args 或选项映射,您将不会从中得到太多,可能需要检查模板的来源。
检查 new
任务 lein help new
的全部帮助。
这不是一个完整的答案,但似乎只需要传递一个错误的属性,至少在 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
从 Luminus documentation 我看到创建 Luminus 应用程序时有一个名为 h2 的选项:
lein new luminus guestbook +h2
如何查看所有可用选项?
您可以使用以下命令:
lein new :show <template>
不幸的是,如果模板函数不提供文档字符串并使用 rest args 或选项映射,您将不会从中得到太多,可能需要检查模板的来源。
检查 new
任务 lein help new
的全部帮助。
这不是一个完整的答案,但似乎只需要传递一个错误的属性,至少在 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