You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
MSilva95 a5546ae14e
fix(image-upload):the link to the image is broken so it was removed (#2344)
5 months ago
..
audit fix(image-upload):the link to the image is broken so it was removed (#2344) 5 months ago
README.md fix(projects): replace satori/uuid in some projects because it is unmaintained and vulnurable 2 years ago
audit.md feat(audit.md): restore old audit.md files 9 months ago

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