Ruderassistent des Rudervereins Donau Linz https://app.rudernlinz.at
Go to file
philipp 7c71ce59bd
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
show notification badge in menu
2024-04-17 13:51:47 +02:00
.gitea/workflows
frontend [TASK] change favicon to make it sharper 2024-04-17 11:35:12 +02:00
src show notification badge in menu 2024-04-17 13:51:47 +02:00
stats add stats from nginx logs 2024-04-08 23:21:35 +02:00
svelte
templates show notification badge in menu 2024-04-17 13:51:47 +02:00
.dockerignore
.env
.gitignore log usage 2024-04-16 08:52:37 +02:00
Cargo.lock update deps 2024-04-09 11:24:38 +02:00
Cargo.toml update deps 2024-04-09 11:24:38 +02:00
db.svg
Dockerfile
migration.sql
notes.md
README.md
Rocket.toml log usage 2024-04-16 08:52:37 +02:00
rot.service
rotstaging.service
seeds.sql add required role 2024-04-14 18:27:21 +02:00
staging-diff.sql have test users only @ staging 2024-04-14 16:59:17 +02:00
test_db.sh

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