# Development stack - Node (express, mongoose) - React - MongoDB # Route mappings By default, nginx is exposed to localhost:8080 - /api Redirects to the node server (prefixed with /api) - Everything else is redirected to the react development server # Usage To bring containers up: ```sh docker-compose up ``` To bring containers down: ```sh docker-compose down ``` To get a mongodb shell, find the corresponding mongo container name, i.e. run ```sh docker-compose images ``` and attach to the corresponding mongo image ```sh docker exec -it mongo ``` # Todo - Add route for static files - Typescript branch/repo