We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff7fee8 commit c623417Copy full SHA for c623417
.gitignore
@@ -25,3 +25,5 @@ build/Release
25
# Dependency directory
26
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
27
node_modules
28
+
29
+.env
docker-compose.yml
@@ -0,0 +1,10 @@
1
+dev:
2
+ image: iojs:2
3
+ working_dir: /usr/src/app
4
+ volumes:
5
+ - ".:/usr/src/app"
6
+ command: "npm run watch"
7
+ env_file: .env
8
+ environment:
9
+ - NTB_API_ENV=dev
10
+ - NTB_USER_AGENT=turbasen.js/alpha
0 commit comments