update docs
This commit is contained in:
22
README.md
22
README.md
@ -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!
|
||||
}
|
||||
}
|
||||
```
|
||||
|
Reference in New Issue
Block a user