File tree 3 files changed +42
-8
lines changed
3 files changed +42
-8
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change @@ -178,3 +178,27 @@ app.configure(function(){
178
178
## License
179
179
180
180
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
Original file line number Diff line number Diff line change @@ -93,14 +93,6 @@ describe("Integration Tests", function () {
93
93
}
94
94
} )
95
95
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
-
104
96
template . render ( { } ) . should . equal ( expected ) ;
105
97
} ) ;
106
98
} ) ;
You can’t perform that action at this time.
0 commit comments