This branch is 8 commits behind Ruderverein-Donau-Linz/rowt:main
Philipp Hofer b60834ca18
All checks were successful
CI/CD Pipeline / test (push) Successful in 19m25s
CI/CD Pipeline / deploy-main (push) Successful in 21m58s
remove ister :-(
2025-04-28 22:41:54 +02:00
2025-04-28 22:41:54 +02:00
2025-04-28 22:39:45 +02:00
2025-04-28 22:40:48 +02:00
2024-04-08 23:21:35 +02:00
try
2024-01-16 20:00:41 +01:00
2023-02-08 16:25:06 +01:00
2024-04-16 08:52:37 +02:00
2025-04-18 17:44:21 +02:00
2025-04-18 17:44:21 +02:00
fd
2024-08-12 20:55:31 +02:00
2024-12-11 16:28:16 +01:00
2025-04-17 20:42:36 +02:00
2024-12-18 13:30:15 +01:00
2023-03-26 14:40:56 +02:00

latest CI run on main

Build

Frontend

  1. cd frontend
  2. npm install
  3. npm run (watch/build)

Run

Backend

  1. cargo r

Test

Frontend

  • npx playwright test --workers 1 --project firefox
  • Nice UI: --ui
  • Generate tests: npx playwright codegen

Backend (Unit + Integration)

cargo t

Lints

  • Rust: cargo check
  • Tera files: djlint **.html.tera --profile=jinja --reformat
  • Typescript: prettier -w *.ts

Dependencies

  • sqlite3
  • rust

Nginx config

server {
    server_name staging.rudernlinz.at;
    location / {
        proxy_pass http://localhost:7999/; # The / is important!
    }
}

server {
    server_name app.rudernlinz.at;
    location / {
        proxy_pass http://localhost:8001/; # The / is important!
    }
}
Description
Ruderassistent des Rudervereins Donau Linz
Readme 12 MiB
Languages
Rust 45.3%
TypeScript 43.1%
Svelte 5.2%
SCSS 4.1%
JavaScript 1.8%
Other 0.3%