feat: add api

This commit is contained in:
Karl-Philipp Wulfert
2018-11-29 17:38:57 +01:00
commit 4839f941c6
27 changed files with 7111 additions and 0 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM node:lts-alpine
ADD . /app
WORKDIR /app
ENTRYPOINT ["node", "lib/cli.js"]
CMD ["--help"]