summaryrefslogtreecommitdiff
path: root/crashbox-server/src/main/scala/io/crashbox/ci/Main.scala
blob: 4961b866f233feb03c4db21bc54b1c55064fcf5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package io.crashbox.ci

import scala.util.{Failure, Success}

import akka.http.scaladsl.Http

object Main
    extends Core
    with Schedulers
    with Builders
    with Parsers
    with Source
    with StreamStore
    with HttpApi {

  def main(args: Array[String]): Unit = {
    reapDeadBuilds()

    val host = system.settings.config.getString("crashbox.host")
    val port = system.settings.config.getInt("crashbox.port")

    Http(system).bindAndHandle(httpApi, host, port) onComplete {
      case Success(_) =>
        system.log.info(s"Listening on $host:$port")
      case Failure(ex) =>
        system.log.error(ex, s"Failed to bind to $host:$port")
        system.terminate()
    }
  }

}