Skip to content

Commit

Permalink
😱
Browse files Browse the repository at this point in the history
  • Loading branch information
unwriter committed Jan 21, 2019
0 parents commit eb12186
Show file tree
Hide file tree
Showing 20 changed files with 4,639 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
"extends": "standard"
};
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
.env
.env2
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
FROM node:8
WORKDIR /app
COPY . /app
RUN rm -rf node_modules && npm install
EXPOSE 8081
CMD ["node", "index.js"]
Loading

0 comments on commit eb12186

Please sign in to comment.