Skip to content

Latest commit

 

History

History
24 lines (23 loc) · 627 Bytes

README.md

File metadata and controls

24 lines (23 loc) · 627 Bytes

Run dev env

  1. Install Docker and docker-compose
  2. Run this command (from project root):
docker-compose up -d
  1. To get a console to a running container run:
docker-compose exec back bash
docker-compose exec front bash
  1. To get container logs:
docker logs back_back_1
  1. To clear the env run:
docker-compose down
  1. Go to http://localhost:8082 in the browser to view the back API

http-requests from browser

  1. Add /backend prefix to location in every request. For example, instead http://localhost:3000/login use http://localhost:3000/backend/login.