Rename project to MerchantsOfHope-SupplyANdDemandPortal

This commit is contained in:
2025-10-16 17:11:25 -05:00
parent 039d51c4e5
commit 0ecd6c67eb
14 changed files with 52 additions and 52 deletions

View File

@@ -1,58 +1,58 @@
services:
mysteryapp-cursor-database:
merchantsofhope-supplyanddemandportal-database:
image: postgres:15-alpine
container_name: mysteryapp-cursor-database
container_name: merchantsofhope-supplyanddemandportal-database
environment:
POSTGRES_DB: mysteryapp_cursor
POSTGRES_USER: mysteryapp_user
POSTGRES_PASSWORD: mysteryapp_password
POSTGRES_DB: merchantsofhope_supplyanddemandportal
POSTGRES_USER: merchantsofhope_user
POSTGRES_PASSWORD: merchantsofhope_password
ports:
- "0.0.0.0:5432:5432"
volumes:
- mysteryapp-cursor-postgres-data:/var/lib/postgresql/data
- merchantsofhope-supplyanddemandportal-postgres-data:/var/lib/postgresql/data
networks:
- mysteryapp-cursor-network
- merchantsofhope-supplyanddemandportal-network
mysteryapp-cursor-backend:
merchantsofhope-supplyanddemandportal-backend:
build:
context: ./backend
dockerfile: Dockerfile
container_name: mysteryapp-cursor-backend
container_name: merchantsofhope-supplyanddemandportal-backend
environment:
NODE_ENV: development
DATABASE_URL: postgresql://mysteryapp_user:mysteryapp_password@mysteryapp-cursor-database:5432/mysteryapp_cursor
JWT_SECRET: mysteryapp_jwt_secret_key_2024
DATABASE_URL: postgresql://merchantsofhope_user:merchantsofhope_password@merchantsofhope-supplyanddemandportal-database:5432/merchantsofhope_supplyanddemandportal
JWT_SECRET: merchantsofhope_jwt_secret_key_2024
PORT: 3001
ports:
- "0.0.0.0:3001:3001"
depends_on:
- mysteryapp-cursor-database
- merchantsofhope-supplyanddemandportal-database
volumes:
- ./backend:/app
- /app/node_modules
networks:
- mysteryapp-cursor-network
- merchantsofhope-supplyanddemandportal-network
mysteryapp-cursor-frontend:
merchantsofhope-supplyanddemandportal-frontend:
build:
context: ./frontend
dockerfile: Dockerfile
container_name: mysteryapp-cursor-frontend
container_name: merchantsofhope-supplyanddemandportal-frontend
environment:
REACT_APP_API_URL: http://localhost:3001
ports:
- "0.0.0.0:12000:3000"
depends_on:
- mysteryapp-cursor-backend
- merchantsofhope-supplyanddemandportal-backend
volumes:
- ./frontend:/app
- /app/node_modules
networks:
- mysteryapp-cursor-network
- merchantsofhope-supplyanddemandportal-network
volumes:
mysteryapp-cursor-postgres-data:
merchantsofhope-supplyanddemandportal-postgres-data:
networks:
mysteryapp-cursor-network:
merchantsofhope-supplyanddemandportal-network:
driver: bridge