Getting started with daily development

Other topics

Daily continuous development example with Scala

# install sbt with homebrew (if you didn't)
brew install sbt

# - create a new scala project
# - name your project name when asked like: hello-world
sbt new sbt/scala-seed.g8

# go to the new project directory that you named
cd hello-world

# run sbt to open the sbt shell
sbt

# run your project in continuous running mode
~ run

# to continuously see the test outputs
# open up a new terminal tab, run sbt, type:
~ test

# to continuously compile
# open up a new terminal tab, run sbt, type:
~ compile

~ used for continuous operations in sbt as seen above.

Contributors

Topic Id: 9842

Example Ids: 30283

This site is not affiliated with any of the contributors.