This is a Scala project for the blog article about Scala HTTP API libraries. It provides a simple example on how to use https://sangria-graphql.github.io/ library.
This will clean the compilation files (*.class) from the project:
sbt cleanThe following command with format all the Scala files (*.scala) according to the scala format file provided in the project (.scalafmt.conf)
sbt fmtThe following command will compile the main project files:
sbt compileThis will execute all the tests in the project:
sbt testThe sbt check command will execute the following steps:
- Clean all compilation files (*.class)
- Format all project files
- Compile all project files (including test classes)
- Execute all the tests
sbt check

