Hajbo

Results 6 issues of Hajbo

Closes #56 Closes #60 -> doesn't work yet, the `db-init` service fails if the port is changed This PR has a few things: ## Devcontainers I wanted to have a...

Implement the two related endpoints: - [Favorite Article](https://realworld-docs.netlify.app/docs/specs/backend-specs/endpoints#favorite-article) - [Unfavorite Article](https://realworld-docs.netlify.app/docs/specs/backend-specs/endpoints#unfavorite-article) You can use the user follow/unfollow feature as an example

Implement the one Tag relate dendpoint: - [Get Tags](https://realworld-docs.netlify.app/docs/specs/backend-specs/endpoints#get-tags)

The Articles are blocking the other remaining features, we should start with the basic CRUD functionality: - [Create Article](https://realworld-docs.netlify.app/docs/specs/backend-specs/endpoints#create-article) - [Get Article](https://realworld-docs.netlify.app/docs/specs/backend-specs/endpoints#get-article) - [Delete Article](https://realworld-docs.netlify.app/docs/specs/backend-specs/endpoints#delete-article) - [Update Article](https://realworld-docs.netlify.app/docs/specs/backend-specs/endpoints#update-article)

Implement the three comment related endpoints: - [Add Comments to an Article](https://realworld-docs.netlify.app/docs/specs/backend-specs/endpoints#add-comments-to-an-article) - [Get Comments from an Article](https://realworld-docs.netlify.app/docs/specs/backend-specs/endpoints#get-comments-from-an-article) - [Delete Comment](https://realworld-docs.netlify.app/docs/specs/backend-specs/endpoints#delete-comment)

Implement two Articles endpoints: - [List Articles](https://realworld-docs.netlify.app/docs/specs/backend-specs/endpoints#list-articles) - No auth - Limit-offset pagination - Some filters: tag, author, favorited - Make sure to return the articles ordered by most recent...