https://github.com/pascalhonegger/jasstracker
Eine Plattform zum Erfassen, Visualisieren und Auswerten von mehreren Coiffeur-Jass
https://github.com/pascalhonegger/jasstracker
argon2 clean-architecture docker docker-compose flyway gradle-kotlin-dsl intellij jass jooq kotlin ktor ktor-jwt ktor-server latex monorepo pinia scss tailwindcss vue3-typescript
Last synced: about 2 months ago
JSON representation
Eine Plattform zum Erfassen, Visualisieren und Auswerten von mehreren Coiffeur-Jass
- Host: GitHub
- URL: https://github.com/pascalhonegger/jasstracker
- Owner: PascalHonegger
- License: mit
- Created: 2022-06-13T19:22:38.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2026-04-19T20:41:17.000Z (about 2 months ago)
- Last Synced: 2026-04-19T22:08:42.685Z (about 2 months ago)
- Topics: argon2, clean-architecture, docker, docker-compose, flyway, gradle-kotlin-dsl, intellij, jass, jooq, kotlin, ktor, ktor-jwt, ktor-server, latex, monorepo, pinia, scss, tailwindcss, vue3-typescript
- Language: Kotlin
- Homepage: https://jasstracker.honegger.dev/
- Size: 11.3 MB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JassTracker
[](https://github.com/PascalHonegger/JassTracker/actions/workflows/backend.yml)
[](https://github.com/PascalHonegger/JassTracker/actions/workflows/frontend.yml)
[](https://github.com/PascalHonegger/JassTracker/actions/workflows/documentation.yml)
[](https://github.com/PascalHonegger/JassTracker/actions/workflows/operations.yml)
## Screenshots




## Development
The easiest way to start all components is using the configured IntelliJ run configuration.
There exists one configuration for `Frontend`, `Backend` and `Postgres Dev`, or you can start all using the `All Dev` configuration.
You can also manually start all components:
### Frontend
```shell
cd Frontend
# Make sure you've set up PNPM (https://pnpm.io/installation#using-corepack)
# Install NPM dependencies
pnpm i
# Start dev server
pnpm dev
# Build for prod
pnpm build
# Run linter
pnpm lint
```
### Backend
```shell
# Start dev server
./gradlew run
# Run tests
./gradlew check
# Generate jOOQ Code
docker run -d \
--rm
--name postgres \
-e POSTGRES_USER=jasstracker \
-e POSTGRES_PASSWORD=password \
-p 5432:5432 \
-v jasstracker_pg_dev:/var/lib/postgresql/data \
postgres:18-alpine
./gradlew generateJasstrackerJooq
```
## Deployment / Production
```shell
# See docker-compose.yml for prod template
docker compose up -d
```
## Documentation
This repository is configured to be usable within VS Code, using the LaTeX Workshop plugin.
The included makefile can be used via the `make doc` command within the `Documentation` directory to build the pdf version of the documentation. The `make doc_diff` command can be used to generate the diff pdf via latexdiff. Make sure that you tag the base version you want to use for the diff with the `latexdiff-base` tag in the repository. Take a look at `Documentation/makefile` for more information.
The repository has also been configured to automatically build `Documentaton/out/main.pdf` and `Documentation/out/diff.pdf` upon every push onto gitlab. These can be found within `CI/CD -> Jobs -> Artifacts`. Take a look at `.gitlab-ci.yml` for more information.