nlits
nlits
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
Well, it is a 1 time thing anyway, it should be fine
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
you sure? It might be a battlesnake issue, but my code for sure did not error. Here is the game: https://play.battlesnake.com/game/1aead804-8a24-4aea-bc4f-b2412402d8a6
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
i am on the one that was active from the 13th to now
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
either log search is broken or no error occured
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
Wait, can't I just search for traceback and see if any happened on the 21st?
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
(My battlesnake logs the game board every move)
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
I will have to click "load more" so many times tho
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
ik, but does the search feature search timestamps?
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
No logs found containing May 21
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
but battlesnake does not
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
ok
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
My snake is not the best designed, and does not log out timestamps. I remember checking the game tho and nothing went wrong server side
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
Or I might miss this
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
Also, please ping on reply
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
My site will be online tonight, and I will check again
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
Have not check recently (found this on battlesnake, lost a game because of it)
41 replies
RRailway
Created by nlits on 5/25/2023 in #✋|help
503 server error
7afe5be9-0302-4917-a5b9-22869e2f0c67
41 replies
RRailway
Created by nlits on 5/9/2023 in #✋|help
How to setup my app?
nimble install does, nimble build does not 👍
31 replies
RRailway
Created by nlits on 5/9/2023 in #✋|help
How to setup my app?
1 thing I do want want you to note is that nimble build does not build a release version, it builds a debug one. Optimally the dockerfile should be this:
FROM nimlang/nim:1.6.12-alpine

WORKDIR /app

COPY . .

RUN nimble refresh

RUN nimble build -d:release

CMD ./main
FROM nimlang/nim:1.6.12-alpine

WORKDIR /app

COPY . .

RUN nimble refresh

RUN nimble build -d:release

CMD ./main
31 replies