rename exe to glimpse instead of server

This commit is contained in:
array-in-a-matrix 2024-08-01 19:59:15 -04:00
parent 51a36b9435
commit 60ddd8462f
5 changed files with 3 additions and 3 deletions

View file

@ -9,4 +9,4 @@ RUN nimble -y install jester norm checksums
RUN nimble build -d:release RUN nimble build -d:release
FROM scratch AS runner FROM scratch AS runner
COPY --from=builder /src/server . COPY --from=builder /src/glimpse .

View file

@ -11,4 +11,4 @@ RUN nimble build -d:release
ARG PORT=8080 ARG PORT=8080
EXPOSE $PORT EXPOSE $PORT
ENTRYPOINT ["./server"] ENTRYPOINT ["./glimpse"]

BIN
glimpse Executable file

Binary file not shown.

View file

@ -3,7 +3,7 @@ author = "Array in a Matrix"
description = "Glimpse backend server." description = "Glimpse backend server."
license = "AGPL-3.0-or-later" license = "AGPL-3.0-or-later"
bin = @["server"] bin = @["glimpse"]
srcDir = "src" srcDir = "src"
backend = "c" backend = "c"