We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ec44d31 commit a9e1619Copy full SHA for a9e1619
components/server/package.json
@@ -26,7 +26,7 @@
26
"start-testdb": "leeway run components/gitpod-db:init-testdb",
27
"start-spicedb": "leeway run components/spicedb:start-spicedb",
28
"stop-spicedb": "leeway run components/spicedb:stop-spicedb",
29
- "start-redis": "if redis-cli -h ${REDIS_HOST:-0.0.0.0} -ping; then echo 'Redis is already running.'; else docker run --rm --name test-redis -p 6379:6379 -d redis; fi",
+ "start-redis": "if redis-cli -h ${REDIS_HOST:-0.0.0.0} ping; then echo 'Redis is already running.'; else docker run --rm --name test-redis -p 6379:6379 -d redis; fi",
30
"stop-redis": "docker stop test-redis || true",
31
"telepresence": "telepresence --swap-deployment server --method inject-tcp --run yarn start-inspect"
32
},
0 commit comments