Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 566 Bytes

README.md

File metadata and controls

56 lines (44 loc) · 566 Bytes

ACM Algorithm

Description

Installation Production

Backend

cd backend
docker compose up

Frontend

cd frontend
sh start_react.sh

Installation Development

Backend

cd backend
docker compose up

Frontend

cd frontend
npm install
npm run dev

Remove Docker

Docker Images Removal

docker rmi $(docker images -q) -f 

Docker Containers Removal

docker rm $(docker ps -a -q) -f