Compare commits

..

1 commit

Author SHA1 Message Date
c3dcb882cf fix: listen on 127.0.0.1
Some checks failed
container-scan / Container Scan (pull_request) Successful in 2m13s
tests / Tests (pull_request) Failing after 2m30s
docker-build / docker (pull_request) Successful in 6m17s
2025-05-13 13:31:40 +02:00

View file

@ -9,7 +9,7 @@
"lint": "next lint",
"format": "prettier --write .",
"cypress:build": "prettier --check . && NODE_ENV=test next build",
"cypress:start_server": "cp .env.test .next/standalone && cp public .next/standalone/ -r && cp .next/static/ .next/standalone/.next/ -r && NODE_ENV=test HOSTNAME=\"0.0.0.0\" dotenv -e .env.test -- node .next/standalone/server.js",
"cypress:start_server": "cp .env.test .next/standalone && cp public .next/standalone/ -r && cp .next/static/ .next/standalone/.next/ -r && NODE_ENV=test dotenv -e .env.test -- HOSTNAME=\"0.0.0.0\" node .next/standalone/server.js",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},