Compare commits

..

1 commit

Author SHA1 Message Date
3a18e17bb6 fix: listen on 127.0.0.1
Some checks failed
container-scan / Container Scan (pull_request) Successful in 2m8s
docker-build / docker (pull_request) Successful in 3m55s
tests / Tests (pull_request) Failing after 7m15s
2025-05-13 13:38:04 +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 dotenv -e .env.test -- HOSTNAME=\"0.0.0.0\" 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 HOSTNAME=\"0.0.0.0\" dotenv -e .env.test -- node .next/standalone/server.js",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},