codacy.test.docker.Databases.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codacy-test-bench_2.13 Show documentation
Show all versions of codacy-test-bench_2.13 Show documentation
A library to send events on rabbit-mq
The newest version!
package codacy.test.docker
trait Databases {
lazy val databases = Seq(
DB("codacy", "DB_DEFAULT_URL", "default", false),
DB("codacy_analysis", "DB_ANALYSIS_URL", "analysis", true),
DB("codacy_filestore", "DB_FILESTOREDATABASE_URL", "fileStoreDatabase", true),
DB("codacy_jobs", "DB_JOBS_URL", "jobs", true),
DB("codacy_metrics", "DB_METRICS_URL", "metrics", true),
DB("codacy_results", "DB_RESULTS_URL", "results", true),
DB("codacy_listener", "DB_LISTENER_URL", "listener", true),
DB("codacy_crow", "DB_CROW", "crow", true)
)
}