update docs

This commit is contained in:
2024-03-15 09:54:36 +01:00
parent f70766e817
commit 5e24f9ce04
3 changed files with 31 additions and 4 deletions

View File

@ -22,3 +22,25 @@
- 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!
}
}
```