···4455COPY . .
6677-RUN apk add just rust
77+RUN apk add just
8899-RUN GOFLAGS=-tags=musl just build
99+RUN just build
10101111FROM alpine:latest
1212···14141515# expose default port
1616EXPOSE 8000
1717-1818-RUN apk add --no-cache libgcc
19172018COPY --from=builder /app/build/lasad .
2119COPY --from=builder /app/build/lasa .
+3-3
README.md
···3838just dev
3939```
40404141-Starts Valkey in Docker and exposes its port:
4141+Starts Redis in Docker and exposes its port:
4242```bash
4343-just valkey
4343+just redis
4444```
45454646## Deploy
47474848Lasa is a standalone binary that requires nothing.
4949-You can use Valkey as a cache.
4949+You can use Redis as a cache.
50505151### Building
5252
···66# if you want to log HTTP 400 responses
77#log_bad_request = true
8899-# if you are using valkey
99+# if you are using redis
1010#[cache]
1111#host = "localhost"
1212#port = 6379
1313#db = 0
1414#duration = 60 # cache duration in minutes
15151616-# if valkey requires auth
1616+# if redis requires auth
1717#[cache.auth]
1818#username = ""
1919#password = ""