Tournament management web application intended for Klácelky Foosball Cup.
For local development you will need NodeJS, Yarn and a container runtime for running the database, either Podman or Docker.
-
Copy the
.env.examplefile to.envand edit it. -
Install packages.
yarn
- Start the database.
podman compose up -d database ## -d will start it in the background
- Run database migrations. This will also generate
@prisma/clientbased on the schema.
yarn prisma migrate dev
- Let the development begin!