Skip to content

Commit 254474f

Browse files
committed
Added README to Docker Environment
1 parent bd42679 commit 254474f

File tree

3 files changed

+42
-8
lines changed

3 files changed

+42
-8
lines changed

Makefile

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.PHONY: run in stop clean build
2+
3+
run:
4+
docker-compose run --rm dev
5+
6+
in:
7+
docker exec -i -t $(shell docker-compose ps | grep run | cut -d" " -f 1) /bin/bash
8+
9+
stop:
10+
docker-compose stop
11+
12+
clean:
13+
docker-compose down
14+
docker volume rm $(docker volume ls -qf dangling=true)
15+
16+
build:
17+
sh ./docker/dockerfile-ids.sh
18+
docker-compose build dev

README.md

+24
Original file line numberDiff line numberDiff line change
@@ -178,3 +178,27 @@ app.configure(function(){
178178
## License
179179

180180
MIT, see [LICENSE.md](./LICENSE.md).
181+
182+
## Docker environment
183+
184+
All you need is [Docker](https://www.docker.com/) with `docker-compose` available from your terminal.
185+
186+
187+
We have a fancy shortcut to get your application up and running, and you also get access to the container terminal:
188+
189+
```console
190+
$ make build
191+
$ make run
192+
```
193+
194+
From this point, it's just a matter of starting the Django application from within the container shell:
195+
196+
```console
197+
htmling:~/app(master)$ npm test
198+
```
199+
200+
#### Other fancy shortcuts we have for Docker fans
201+
202+
* `$ make in` to open a new container terminal
203+
* `$ make stop` to stop all containers
204+
* `$ make clean` to clean the Docker environment

test/test.js

-8
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,6 @@ describe("Integration Tests", function () {
9393
}
9494
})
9595

96-
template.toCase = function (direction, input) {
97-
return input['to' + direction.charAt(0).toUpperCase() + direction.slice(1) + 'Case']();
98-
};
99-
100-
template.reverse = function (input) {
101-
return input.split('').reverse().join('');
102-
};
103-
10496
template.render({}).should.equal(expected);
10597
});
10698
});

0 commit comments

Comments
 (0)