To use this repository development environment you should have:
- docker
- docker-compose standalone (currently docker compose plugin is not supported)
- make
Note This repository got quite big, consider using
--depth
optiongit clone --depth=10 <repo_url>
git clone <repo_url>
2. Install DAM
tool
After cloning the repository run make
to see help message.
It could be something like this:
$ make
DAM tool help:
make install_dam_tool - install DAM tool
Execute make install_dam_tool
to install DAM
tool.
make init
This command will:
- generate
docker-stack.yml
file (aka compileddocker-compose.yml
file) - pull necessary docker image(s)
- build docker container(s)
- run docker container(s)
- install dependencies
- [optional] run tests
If tests are not executed automatically, you can run them manually:
make test && make test_coverage
Note
make test
andmake test_coverage
commands can be unavailable. It depends on the project.
To see available commands run:
make
or
make help