chore: rename server to api (#7342)

This commit is contained in:
sriram veeraghanta 2025-07-04 15:32:21 +05:30 committed by GitHub
parent 6bee97eb26
commit fdbe4c2ca6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
554 changed files with 39 additions and 43 deletions

View file

@ -122,7 +122,7 @@ services:
api:
build:
context: ./apps/server
context: ./apps/api
dockerfile: Dockerfile.dev
args:
DOCKER_BUILDKIT: 1
@ -130,10 +130,10 @@ services:
networks:
- dev_env
volumes:
- ./apps/server:/code
- ./apps/api:/code
command: ./bin/docker-entrypoint-api-local.sh
env_file:
- ./apps/server/.env
- ./apps/api/.env
depends_on:
- plane-db
- plane-redis
@ -143,7 +143,7 @@ services:
worker:
build:
context: ./apps/server
context: ./apps/api
dockerfile: Dockerfile.dev
args:
DOCKER_BUILDKIT: 1
@ -151,10 +151,10 @@ services:
networks:
- dev_env
volumes:
- ./apps/server:/code
- ./apps/api:/code
command: ./bin/docker-entrypoint-worker.sh
env_file:
- ./apps/server/.env
- ./apps/api/.env
depends_on:
- api
- plane-db
@ -162,7 +162,7 @@ services:
beat-worker:
build:
context: ./apps/server
context: ./apps/api
dockerfile: Dockerfile.dev
args:
DOCKER_BUILDKIT: 1
@ -170,10 +170,10 @@ services:
networks:
- dev_env
volumes:
- ./apps/server:/code
- ./apps/api:/code
command: ./bin/docker-entrypoint-beat.sh
env_file:
- ./apps/server/.env
- ./apps/api/.env
depends_on:
- api
- plane-db
@ -181,7 +181,7 @@ services:
migrator:
build:
context: ./apps/server
context: ./apps/api
dockerfile: Dockerfile.dev
args:
DOCKER_BUILDKIT: 1
@ -189,7 +189,7 @@ services:
networks:
- dev_env
volumes:
- ./apps/server:/code
- ./apps/api:/code
command: ./bin/docker-entrypoint-migrator.sh --settings=plane.settings.local
env_file:
- .env