Skip to content

Latest commit

 

History

History
40 lines (30 loc) · 1.33 KB

README.md

File metadata and controls

40 lines (30 loc) · 1.33 KB

devForum

This repository contains all the packages that make up a developer forum to work.

  • USER This service holds the changes that can create a user.
  • QUESTION This service holds the changes for creating a question, comment on it, vote on it, list all the available questions, search for a question
  • ANSWER This service holds the changes for answering a question, comment on it, vote on it, list all the available answers for the question and the owner can select the correct answer.

Working on this code base: To see the api's with its default input type import this postman Collection or you can find it in project as apis.json.

*Note: To run this project locally

yarn
yarn start

You can see the urls to api's will be listed in the console like this

Screenshot 2020-11-29 at 5 11 27 PM

You can follow the url's in the terminal or replace the hostname in postman collection to localhost:3000

TABLES CREATED

  • user
  • question
  • answer

TECHNOLOGIES USED

  • TypeScript
  • Express.js
  • AWS Dynamodb

UPDATE AWS CONFIG

const awsConfig = { "region": "", "endpoint": "", "accessKeyId": "", "secretAccessKey": "" };