This project provides a simple guestbook using json for storing guestbook entries.
- If not installed, install JSON server with command: npm install -g json-server
- Start the server: json-server --watch entrydb.json --port 3004
- Run the guestbook application: npm start
- Build the docker image: docker image build -t react-guestbook-image:latest .
- Run the image: docker run -p 3000:3000 -p 3004:3004 react-guestbook-image
- Tests
- More detailed instructions for setting up