We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01ef76d commit 75b8261Copy full SHA for 75b8261
.github/workflows/ci.yml
@@ -33,6 +33,6 @@ jobs:
33
- name: React tests
34
run: |
35
GO_MOD=go.mod docker compose --env-file=./config/ci.env.dev up --wait --build backend db staging_db frontend
36
- docker network ls
+ docker container logs go_backend
37
docker exec frontend curl http://backend:8080/api/filesystem/info
38
# docker exec frontend npm test
backend/main.go
@@ -30,5 +30,7 @@ func main() {
30
handler := cors.Default().Handler(mux)
31
handler = c.Handler(handler)
32
+ log.Print("CMS Go backend starting on port :8080 :D.")
+ log.Print("Amongus.")
log.Fatal(http.ListenAndServe(":8080", handler))
}
0 commit comments