public/subjects/forum/image-upload
MSilva95 a5546ae14e
fix(image-upload):the link to the image is broken so it was removed (#2344)
2023-12-08 14:53:51 +01:00
..
audit fix(image-upload):the link to the image is broken so it was removed (#2344) 2023-12-08 14:53:51 +01:00
README.md fix(projects): replace satori/uuid in some projects because it is unmaintained and vulnurable 2022-10-20 15:54:06 +01:00
audit.md feat(audit.md): restore old audit.md files 2023-09-05 15:38:56 +01:00

README.md

forum-image-upload

Objectives

You must follow the same principles as the first subject.

In forum image upload, registered users have the possibility to create a post containing an image as well as text.

  • When viewing the post, users and guests should see the image associated to it.

There are several extensions for images like: JPEG, SVG, PNG, GIF, etc. In this project you have to handle at least JPEG, PNG and GIF types.

The max size of the images to load should be 20 mb. If there is an attempt to load an image greater than 20mb, an error message should inform the user that the image is too big.

Hints

  • Be cautious with the size of the images.

Instructions

  • The backend must be written in Go.
  • You must handle website errors.
  • The code must respect the good practices
  • It is recommended to have test files for unit testing.

Allowed packages

This project will help you learn about:

  • Image manipulation
  • Image types