Makefile - how to work with them¶
Makefile is¶
Makefile is it is tool that help us to manage bash commands.
On Unix systems the Makefile by default is installed.
In Windows you should install it manually. You can install in via choco:
choco install make
Commands¶
On local computer:
To run building project images:
make local_build
To run the project:
make local_run
Run web image and dependency:
make local_run_web
Go to into to bash on web container:
make local_bash
Go to into to Django shell on web container:
make local_shell
Delete all containers:
make local_down