This is a draft cheat sheet. It is a work in progress and is not finished yet.
Install Docker
$ sudo apt-get install docker
$ sudo apt-get install docker.io
|
With this two commands you can install all you need about Docker on you computer
Install Travis2Docker
$ pip install git+https://github.com/Vauxoo/travis2docker.git
|
|
|
Run entrypoint without tests
TEST_ENABLE="0" /entrypoint.sh
|
Display coverage
# coverage report -m
# coverage report -m > coverage.out
|
Install a specific module
INCLUDE=module_name /entrypoint.sh
|
|
|
ngrok (en segundo plano)
$ ngrok http 8069 > /dev/null &
|
$ curl localhost:4040/api/tunnels 2>&1 | grep -Po 'http://[a-z0-9]{8}.ngrok.io' | tail -1
|
You can run the second command in order to view current ngrok url address
|