API endpoints for the Stack Overflow Lite web application.
POST '/auth/signup'
- Register a new userPOST '/auth/login'
- Login a registered userPOST '/api/v1/questions'
- Post a questionGET '/api/v1/questions'
- Fetch all questionsGET '/api/v1/questions/<questionId>'
- Fetch a specific questionDELETE '/api/v1/questions/<questionId>'
- Delete a specific questionPOST '/api/v1/questions/<questionId>/answers'
- Post an answer to a questionPUT '/api/v1/questions/<questionId>/answers/<answerId>'
- Update the description of the answer or mark the answer as accepted/rejected