serve-api
You will need to install docker and make into your machine to be able to work on this project. All other dependencies are managed via Docker util images and ran
via Make commands.
You can use main commands the way you were used to, just with few small changes.
Since Make considers flags as it's own flags, not arguments being passed, you'd need to add -- before flags. For example make npm -- -v. Otherwise it would give you version of make.
make yarn add some-packagemake nx <whatever you need>make node index.jsIf you need some other console tool, please modify Makefile and add installation of it to the node utils image at docker/utils/node.dockerfile. Consistency is important.
This is pretty simple, just
Example :make nx run-many -- -t testThis will launch API service on port 8080.
Example :make nx serve-api