Update readme
Update readme
add files
npm install
npm run start
curl -i -XPOST http://localhost:3000/api/profile -H "Content-Type: application/json" -d '{"id": "2", "name": "dfgsdfg", "description": "sdfdsfg", "mbti": "sdf", "enneagram": "fd", "variant": "dsf", "tritype": 435, "socionics": "dfg", "sloan": "fdg", "psyche": "dfg"}'
The above create could be verified by: (without an id in the url will default to 1, this is to avoid breaking the UI)
curl http://localhost:3000/2
curl -i -XPOST http://localhost:3000/api/comment -H "Content-Type: application/json" -d '{"title": "hello", "comment": "hey", "zodiac": "Aries", "mbti": "INFP", "enneagram": "1w2", "profile_id": "2", "commenter_id": "3"}'
curl -i -XPOST 'http://localhost:3000/api/comment/<commentId>/like' -H 'Content-Type: application/json' -d '{"liker_profile_id": "2"}'
curl -i -XPOST 'http://localhost:3000/api/comment/<commentId>/unlike' -H 'Content-Type: application/json' -d '{"liker_profile_id": "2"}'
npm run test
npm run start