Here is how I currently set up a PlayFramework project for use with mill
:
- Create a folder:
/path/to/play-scala-seed-mill/
and cd into that folder. - Create a
build.sc
file in this folder, according to the instructions in the official documentation for PlayFramework support. - This is the part I don't like: to create the folder structure and add files for Play, I run
sbt new playframework/play-scala-seed.g8
as per Play's official documentation. Is there a moremill
-ish way to do this? - Remove the SBT related code from the new folder created under
/path/to/play-scala-seed-mill/
as a result of the above command. - Create an idea project using the command
mill mill.scalalib.GenIdea/idea
.
How can I do this without using SBT?