Skip to content

Latest commit

 

History

History
18 lines (15 loc) · 833 Bytes

File metadata and controls

18 lines (15 loc) · 833 Bytes

ToDoProject

The ToDo application. Backend is written in C#. Frontend was created with Vue.

Backend

To run API inside Docker alone, you can use commands below from the Backend catalogue, where you can find Docker-Compose file:

  1. docker compose -f docker-compose.api.yaml down -v
  2. docker compose -f docker-compose.api.yaml build --no-cache --progress=plain
  3. docker compose -f docker-compose.api.yaml up -d

First one will shuts everything down and delete all data volumes, networks and containers(full reset). Second will build all images from scratch, defined in specified docker compose file and will print a detailed log. The last one will create and start all containers, networks and volumes.

Frontend

To run Vue app go into todo-frontend directory. Then you have to use these commands:

  1. npm install
  2. npm run dev