Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit b8c7819

Browse files
author
Parth Shah
committed
Merge branch 'dev'
2 parents 4d59ffc + 785036f commit b8c7819

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+3648
-0
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true

.eslintrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"extends": "airbnb-base",
3+
"parserOptions": {
4+
"ecmaVersion": 6
5+
}
6+
}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,6 @@ jspm_packages
3535

3636
# Optional REPL history
3737
.node_repl_history
38+
39+
# ignore local config file
40+
config/local.js

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v6.9.2

Dockerfile

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
FROM node:6
2+
LABEL version="1.0"
3+
LABEL description="Connect Messages Serivce"
4+
5+
RUN npm install -g nodemon
6+
7+
# Create app directory
8+
RUN mkdir -p /usr/src/app
9+
WORKDIR /usr/src/app
10+
11+
# Bundle app source
12+
COPY . /usr/src/app
13+
14+
# Install app dependencies
15+
RUN npm install
16+
17+
CMD ["npm", "start"]

Dockerrun.aws.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"AWSEBDockerrunVersion": "1",
3+
"Volumes": [
4+
{
5+
"HostDirectory": "/var/log/app",
6+
"ContainerDirectory": "/log"
7+
}
8+
],
9+
"Logging": "/var/log/app"
10+
}

0 commit comments

Comments
 (0)