Ruderassistent des Rudervereins Donau Linz https://app.rudernlinz.at
Go to file
philipp 46f8ca230a
All checks were successful
CI/CD Pipeline / test (push) Successful in 8m1s
CI/CD Pipeline / deploy-staging (push) Has been skipped
CI/CD Pipeline / deploy-main (push) Has been skipped
fix spacing if boat was steered by hand
2024-04-26 09:54:24 +02:00
.gitea/workflows switch to smarter ci cache, which knows intricacies of rust; e.g. auto deletes unused deps 2024-04-24 10:14:11 +02:00
frontend fix ci 2024-04-24 15:32:33 +02:00
src no special treatment for 'externes boot' 2024-04-24 17:15:53 +02:00
stats add stats from nginx logs 2024-04-08 23:21:35 +02:00
svelte try 2024-01-16 20:00:41 +01:00
templates fix spacing if boat was steered by hand 2024-04-26 09:54:24 +02:00
.dockerignore optimize ci build: use own dockerfile for dependencies + cache for builds (#164) 2024-01-17 22:56:33 +01:00
.env initial push 2023-02-08 16:25:06 +01:00
.gitignore log usage 2024-04-16 08:52:37 +02:00
Cargo.lock update deps 2024-04-19 16:36:42 +02:00
Cargo.toml update deps 2024-04-09 11:24:38 +02:00
db.svg add db pic, created with sqleton 2024-03-22 20:48:04 +01:00
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 implement first draft of switching handoperatable boats 2024-04-24 09:37:45 +02:00
notes.md add notes 2024-01-18 15:28:51 +01:00
README.md update docs 2024-03-15 09:54:36 +01:00
Rocket.toml log usage 2024-04-16 08:52:37 +02:00
rot.service update docs 2024-03-15 09:54:36 +01:00
rotstaging.service update docs 2024-03-15 09:54:36 +01:00
seeds.sql add required role 2024-04-14 18:27:21 +02:00
staging-diff.sql fix ci 2024-04-24 15:56:40 +02:00
test_db.sh add user table 2023-03-26 14:40:56 +02: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!
    }
}