我想在sbtrc中创建别名以及它需要使用的配置文件。
例如:
alias run-web-dev = ;web;~ run -Dconfig.resource=dev.conf
alias run-web-qa = ;web;~ run -Dconfig.resource=qa.conf
这样我才能运行
./activator run-web-dev to use dev.conf and
./activator run-web-qa to use qa.conf
这样的事情可能吗?
由于
答案 0 :(得分:3)
您可以在global.sbt file中设置别名,如下所示:
addCommandAlias("run-web-dev", ";web;~ run -Dconfig.resource=dev.conf")