Compare commits

..

1 commit

Author SHA1 Message Date
f3233f88c8 fix: listen on 127.0.0.1
Some checks failed
container-scan / Container Scan (pull_request) Successful in 2m12s
docker-build / docker (pull_request) Has been cancelled
tests / Tests (pull_request) Has been cancelled
2025-05-13 13:07:37 +02:00

View file

@ -8,7 +8,8 @@
"start": "node .next/standalone/server.js",
"lint": "next lint",
"format": "prettier --write .",
"cypress:start_server": "cp public .next/standalone/ -r && cp .next/static/ .next/standalone/.next/ -r && dotenv -e .env.test -- node .next/standalone/server.js",
"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:open": "cypress open",
"cypress:run": "cypress run"
},