Ruderassistent des Rudervereins Donau Linz https://app.rudernlinz.at
Go to file
philipp c6e3458588
All checks were successful
CI/CD Pipeline / test (push) Successful in 8m55s
CI/CD Pipeline / deploy-staging (push) Successful in 18m13s
CI/CD Pipeline / deploy-main (push) Has been skipped
Merge pull request 'add-badge' (#575) from add-badge into staging
Reviewed-on: #575
2024-06-06 10:48:30 +02:00
.gitea/workflows fix ci 2024-05-12 22:38:25 +02:00
frontend test fails due to new sanity check (25km in 1 min :-)); started trip 2 hours ago now in tests 2024-05-22 22:28:33 +02:00
src use new additional information in test 2024-06-06 06:59:41 +02:00
stats add stats from nginx logs 2024-04-08 23:21:35 +02:00
svelte
templates don't lose trip_type on event cancellation; don't add empty notes in cal 2024-06-06 06:57:43 +02:00
.dockerignore
.env
.gitignore log usage 2024-04-16 08:52:37 +02:00
Cargo.lock update deps 2024-06-05 14:57:28 +02:00
Cargo.toml update deps 2024-06-05 14:57:28 +02:00
db.svg
Dockerfile use new docker image 2024-04-19 12:27:06 +02:00
fd implement first draft of switching handoperatable boats 2024-04-24 09:37:45 +02:00
migration.sql remove users from trip after they have read the notificatoin 2024-05-21 19:41:00 +02:00
notes.md
README.md try new badge :-) 2024-06-06 10:38:18 +02:00
Rocket.toml add weather infos 2024-05-16 14:41:15 +02:00
rot.service
rotstaging.service
seeds.sql rename role to manage_events 2024-05-28 10:46:21 +02:00
staging-diff.sql migrated db 2024-05-28 11:26:22 +02:00
test_db.sh

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!
    }
}