change directory structure

This commit is contained in:
2025-05-05 15:32:53 +03:30
parent 154174a2c1
commit 26afb414fb
2 changed files with 8 additions and 3 deletions

5
.gitignore vendored
View File

@@ -1,3 +1,6 @@
.env .env
.idea .idea
data data
backend
frontend
notification

View File

@@ -53,7 +53,7 @@ services:
ports: ports:
- "9000:9000" - "9000:9000"
volumes: volumes:
- ./laravel:/var/www/crm - ${LARAVEL_PROJECT_PATH}:/var/www/laravel
profiles: profiles:
- server - server
networks: networks:
@@ -82,7 +82,7 @@ services:
ports: ports:
- "3023:${NOTIFICATION_SERVER_PORT}" - "3023:${NOTIFICATION_SERVER_PORT}"
volumes: volumes:
- ${NOTIFICATION_SERVER_PATH}:/var/www/crm-notification-server - ${NOTIFICATION_SERVER_PATH}:/var/www/notification_server
profiles: profiles:
- server - server
networks: networks:
@@ -102,6 +102,8 @@ services:
- NEXT_PUBLIC_VERSION=${NEXT_PUBLIC_VERSION} - NEXT_PUBLIC_VERSION=${NEXT_PUBLIC_VERSION}
- NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL} - NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL}
- NEXT_PUBLIC_SERVER_SOCKET_URL=${NEXT_PUBLIC_SERVER_SOCKET_URL} - NEXT_PUBLIC_SERVER_SOCKET_URL=${NEXT_PUBLIC_SERVER_SOCKET_URL}
volumes:
- ${NEXT_JS_PATH}:/var/www/nextjs
ports: ports:
- "3000:3000" - "3000:3000"
env_file: env_file: