Skip to content

Commit

Permalink
application setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Matheus Martins committed Sep 30, 2019
1 parent 9678152 commit fda20e1
Show file tree
Hide file tree
Showing 8 changed files with 5,763 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"presets": ["@babel/preset-env"]
}
17 changes: 17 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
module.exports = {
"env": {
"browser": true,
"es6": true
},
"extends": "eslint:recommended",
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"rules": {
}
};
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -59,3 +59,5 @@ typings/

# next.js build output
.next

.idea/*
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
language: node_js
node_js:
- '10'
cache:
directories:
- "node_modules"
install:
- npm install http express debug --save #will be changed to test
script: 'true'
10 changes: 10 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: '3'
services:
multi-tenant-app:
image: node
working_dir: /usr/src/app
volumes:
- ./:/usr/src/app
command: bash -c "npm install && npm start"
ports:
- "3002:8080"
Loading

0 comments on commit fda20e1

Please sign in to comment.