philipp 7e41cd3f73
Some checks are pending
CI/CD Pipeline / test (push) Waiting to run
CI/CD Pipeline / deploy-staging (push) Blocked by required conditions
CI/CD Pipeline / deploy-main (push) Blocked by required conditions
Merge pull request 'add-notification' (#661) from add-notification into staging
Reviewed-on: #661
2024-07-30 23:27:11 +02:00
2024-07-27 20:48:32 +02:00
2024-07-30 23:24:46 +02:00
2024-07-28 07:13:21 +02:00
2024-06-27 07:58:30 +02:00
2024-06-05 14:57:28 +02:00
fd
2024-06-16 20:00:44 +02:00
2024-06-06 10:38:18 +02:00
2024-06-10 19:59:39 +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
https://app.rudernlinz.at
Readme 13 MiB
Languages
Rust 69.7%
TypeScript 24.2%
Svelte 2.7%
SCSS 2.2%
JavaScript 0.9%
Other 0.2%