Proxy between lila and fishnet move clients
lila <-> redis <-> lila-fishnet <- http <- fishnet-clients
Start:
sbtStart with default config:
sbt app/runUse environment variables to start with custom config (redis.host and kamon for example):
REDIS_HOST=redis KAMON_ENABLED=true CONFIG_FORCE_kamon_influxdb_port=8888 sbt app/runOr creating an .env file with environment variables, for example:
cp .env.example .envFor other config check AppConfig.scala
Run all tests (required Docker for IntegrationTest):
sbt app/testRun a single test:
sbt app/testOnly lila.fishnet.ExecutorTestRun code format and auto code refactor with scalafmt & scalafix:
sbt preparesbt release with-defaults