A B2B Collaboration Platform that helps small businesses collaborate on bulk orders, coordinate deliveries, and cross-sell complementary products to reduce costs and improve efficiency.
- Docker and Docker Compose installed
- A
.envfile in the root directory with the following variables:
# .env
BACKEND_PORT=8080
FRONTEND_PORT=5173
API_URL=http://localhost:8080
API_DOMAIN=localhost
# postgres database
POSTGRES_USER=kai
POSTGRES_PASSWORD=password
POSTGRES_DB=gosharedb
POSTGRES_PORT=5432
POSTGRES_HOST=db
# JWT
JWT_SECRET=supersecret123
From the root directory, run:
docker-compose up --build- Open http://localhost:5173 in your browser to view the frontend.
- The frontend will interact with the backend API at http://localhost:8080.
docker-compose downdocker-compose up