mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 13:07:46 +00:00
fix commands
This commit is contained in:
@@ -14,5 +14,3 @@ RUN apt-get update && \
|
|||||||
libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libnss3 libxss1 libasound2 libxtst6 xauth xvfb && \
|
libgtk2.0-0 libgtk-3-0 libgbm-dev libnotify-dev libnss3 libxss1 libasound2 libxtst6 xauth xvfb && \
|
||||||
apt-get clean && \
|
apt-get clean && \
|
||||||
corepack enable && COREPACK_ENABLE_DOWNLOAD_PROMPT=0 corepack prepare pnpm@9.1.2 --activate
|
corepack enable && COREPACK_ENABLE_DOWNLOAD_PROMPT=0 corepack prepare pnpm@9.1.2 --activate
|
||||||
|
|
||||||
USER node
|
|
@@ -7,7 +7,7 @@ services:
|
|||||||
volumes:
|
volumes:
|
||||||
- ../../:/workspaces:cached
|
- ../../:/workspaces:cached
|
||||||
- /tmp/.X11-unix:/tmp/.X11-unix:cached
|
- /tmp/.X11-unix:/tmp/.X11-unix:cached
|
||||||
- home-dot-cache:/home/node/.cache:delegated
|
- home-dir:/home/node:delegated
|
||||||
command: sleep infinity
|
command: sleep infinity
|
||||||
working_dir: /workspaces
|
working_dir: /workspaces
|
||||||
environment:
|
environment:
|
||||||
@@ -219,4 +219,4 @@ services:
|
|||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
postgres-data:
|
postgres-data:
|
||||||
home-dot-cache:
|
home-dir:
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
"runServices": ["login-integration-debug"],
|
"runServices": ["login-integration-debug"],
|
||||||
"workspaceFolder": "/workspaces",
|
"workspaceFolder": "/workspaces",
|
||||||
"forwardPorts": [3001],
|
"forwardPorts": [3001],
|
||||||
"onCreateCommand": "pnpm install --frozen-lockfile --recursive",
|
"onCreateCommand": "pnpm install --recursive",
|
||||||
"postAttachCommand": "pnpm turbo daemon clean; pnpm turbo @zitadel/login#dev test:integration:login:debug",
|
"postAttachCommand": "pnpm turbo daemon clean; pnpm turbo @zitadel/login#dev test:integration:login:debug",
|
||||||
"customizations": {
|
"customizations": {
|
||||||
"jetbrains": {
|
"jetbrains": {
|
||||||
|
@@ -8,7 +8,7 @@
|
|||||||
"runServices": ["login-integration"],
|
"runServices": ["login-integration"],
|
||||||
"workspaceFolder": "/workspaces",
|
"workspaceFolder": "/workspaces",
|
||||||
"forwardPorts": [3001],
|
"forwardPorts": [3001],
|
||||||
"onCreateCommand": "pnpm install --frozen-lockfile --recursive && pnpm turbo test:integration:login",
|
"onCreateCommand": "pnpm install --frozen-lockfile --recursive && cd apps/login/packages/integration && pnpm cypress install && pnpm test:integration:login",
|
||||||
"customizations": {
|
"customizations": {
|
||||||
"jetbrains": {
|
"jetbrains": {
|
||||||
"settings": {
|
"settings": {
|
||||||
|
@@ -9,7 +9,7 @@
|
|||||||
"runServices": ["turbo-lint-unit-debug"],
|
"runServices": ["turbo-lint-unit-debug"],
|
||||||
"workspaceFolder": "/workspaces",
|
"workspaceFolder": "/workspaces",
|
||||||
"forwardPorts": [3001],
|
"forwardPorts": [3001],
|
||||||
"onCreateCommand": "pnpm install --frozen-lockfile --recursive",
|
"onCreateCommand": "pnpm install --recursive",
|
||||||
"postAttachCommand": "pnpm turbo daemon clean; pnpm turbo watch lint test:unit",
|
"postAttachCommand": "pnpm turbo daemon clean; pnpm turbo watch lint test:unit",
|
||||||
"customizations": {
|
"customizations": {
|
||||||
"jetbrains": {
|
"jetbrains": {
|
||||||
|
@@ -7,7 +7,7 @@
|
|||||||
"service": "devcontainer",
|
"service": "devcontainer",
|
||||||
"runServices": ["devcontainer"],
|
"runServices": ["devcontainer"],
|
||||||
"workspaceFolder": "/workspaces",
|
"workspaceFolder": "/workspaces",
|
||||||
"onCreateCommand": "pnpm install --frozen-lockfile --recursive && pnpm turbo lint test:unit",
|
"postStartCommand": "pnpm install --frozen-lockfile --recursive && pnpm turbo lint test:unit",
|
||||||
"customizations": {
|
"customizations": {
|
||||||
"jetbrains": {
|
"jetbrains": {
|
||||||
"settings": {
|
"settings": {
|
||||||
|
@@ -4,7 +4,9 @@
|
|||||||
"name": "zitadel-monorepo",
|
"name": "zitadel-monorepo",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"changeset": "changeset",
|
"changeset": "changeset",
|
||||||
"devcontainer": "devcontainer"
|
"devcontainer": "devcontainer",
|
||||||
|
"devcontainer:lint-unit": "pnpm devcontainer up --config .devcontainer/turbo-lint-unit/devcontainer.json --workspace-folder . --remove-existing-container",
|
||||||
|
"devcontainer:integration:login": "pnpm devcontainer up --config .devcontainer/login-integration/devcontainer.json --workspace-folder . --remove-existing-container"
|
||||||
},
|
},
|
||||||
"pnpm": {
|
"pnpm": {
|
||||||
"overrides": {
|
"overrides": {
|
||||||
|
@@ -35,8 +35,6 @@
|
|||||||
},
|
},
|
||||||
"start": {},
|
"start": {},
|
||||||
"test:unit": {},
|
"test:unit": {},
|
||||||
"test:integration:login": {},
|
|
||||||
"test:integration:login:debug": {},
|
|
||||||
"test:acceptance": {},
|
"test:acceptance": {},
|
||||||
"test:e2e": {},
|
"test:e2e": {},
|
||||||
"lint": {},
|
"lint": {},
|
||||||
|
Reference in New Issue
Block a user