Compare commits

..

1 commit

Author SHA1 Message Date
6c1fa9e878 fix: listen on 127.0.0.1
Some checks failed
container-scan / Container Scan (pull_request) Successful in 2m12s
tests / Tests (pull_request) Failing after 4m1s
docker-build / docker (pull_request) Successful in 6m24s
2025-05-13 13:24:39 +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 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 -- node .next/standalone/server.js",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},