Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 434 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 434 Bytes

Playing with Node

Basically a starter express app now.

Getting Started

npm install
npm start

Development

# Set up .env
cat .env.example > .env

# Run with watch
npm run dev

# Run e2e tests
npm run test

Docker

# Build Docker Image
docker build --tag playing-with-node:latest .

# Run Docker image (add -d after port for detached mode 😉)
docker run -p 8888:80 playing-with-node:latest