Rodin Inc. Examples Deployment Automation API.
- ES6 support via babel
- CORS support via cors
- Body Parsing via body-parser
# clone it
git clone git@github.com:RodinJS/examples-hook-worker.git
cd examples-hook-worker
# Make it your own
rm -rf .git && git init && npm init
# Install dependencies
npm install
# Start development live-reload server
PORT=8080 npm run dev
# Start production server:
PORT=8080 npm startcd examples-hook-worker
# Build your docker
docker build -t yvnio/examples-hook-worker .
# ^ ^ ^
# tag tag name Dockerfile location
# run your docker
docker run -p 8080:8080 yvnio/examples-hook-worker
# ^ ^
# bind the port container tag
# to your host
# machine port