1
0
Fork
You've already forked qu
0
Stupid simple job queue, mostly meant as a pet project to explore a bit of Java and Kotlin.
  • Kotlin 53.3%
  • Java 45.9%
  • Shell 0.8%
2022年08月27日 22:50:23 +01:00
bootstrap bootstrap 2022年08月24日 22:30:10 +01:00
src we can use parallel streams 2022年08月27日 22:31:30 +01:00
.gitignore status changes 2022年08月22日 13:03:06 +01:00
docker-compose.yaml bootstrap 2022年08月24日 22:30:10 +01:00
pom.xml pomfile 2022年08月27日 22:50:23 +01:00
README.md readme 2022年08月27日 22:41:02 +01:00

Qu

A tiny toy project for a job queue, mostly meant as a means for me to write some Java and Kotlin.

Setup

  • Set up a postgres database if you want to run the tests for the postgres-based queue. You can use the docker-compose file for this, unless you want to use your own local PG instance. In that case, make sure to amend the env vars in bootstrap.sh
docker-compose up -d # set up database
cd bootstrap
./bootstrap.sh # run migration to set up db for qu

Testing

QU_DBURL=postgresql://127.0.0.1:5432/qu QU_DBPASSWORD=qu QU_DBUSERNAME=qu mvn test

Literature