For the consideration of future integration with CI/CD and testing, containerisation is a preferred way to build environment.
The main goal for this is to generalise and ease the preparation for coding.
As a result, python -m venv and npm install will be left and Docker engine, docker-compose command will be introduced to make sure the consistency of the coding environment.
For the consideration of future integration with CI/CD and testing, containerisation is a preferred way to build environment.
The main goal for this is to generalise and ease the preparation for coding.
As a result,
python -m venv
andnpm install
will be left and Docker engine,docker-compose
command will be introduced to make sure the consistency of the coding environment.