philipp 730559f2f4
All checks were successful
CI/CD Pipeline / test (push) Successful in 9m49s
CI/CD Pipeline / deploy-staging (push) Successful in 4m35s
CI/CD Pipeline / deploy-main (push) Has been skipped
a bit nicer mail sending layout
2024-03-15 15:29:50 +01:00
2024-03-15 09:10:56 +01:00
2024-03-05 15:01:44 +01:00
2024-03-15 15:29:50 +01:00
2024-03-15 15:29:50 +01:00
2024-03-15 09:54:36 +01:00
2024-03-15 09:54:36 +01:00
2024-03-15 09:54:36 +01:00
2024-03-09 17:02:50 +01:00

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
https://app.rudernlinz.at
Readme EUPL-1.2 6.3 MiB
Languages
Rust 70.9%
TypeScript 23.1%
Svelte 2.6%
SCSS 2.2%
JavaScript 0.9%
Other 0.3%