Skip to content

Latest commit

 

History

History
60 lines (32 loc) · 2.13 KB

TODO.md

File metadata and controls

60 lines (32 loc) · 2.13 KB

Future functionalities

This section contains functionalities proposed as ideas that have not yet been implemented in the project.

  • URL Custom

The idea is to change the url from localhost:3000 to something like thepoetsinn.com

image

To do this, the following steps must be followed:

  • Buy a domain name from one of the many domain registration services available online, such as GoDaddy, Namecheap, HostGator, and more.

  • Configure the IP address after acquiring a domain, this way it points to the server where the Flask application is hosted.

  • Set up a web server like Nginx or Apache and set up a URL redirect.

  • Update the Flask configuration so that the application runs in the new custom url. This way:

app.run(host='thepoetsinn.com', port=80)

  • Notification system

A new functionality in the Frontend that allow us to receive notifications when someone rate your poems. Similar to the send email configuration, this function would allow us to see a message with the same information in the Navbar section of the template, right next to the Logout button.

image

  • Edit rating

Just as the method of Edit Poem, the Edit Rating method would allow us modify every rating we make. The new edit button would be located in the bottom right part of the rating.

image

  • Check profile of other users

Until now the functionality to view user profile is only available with the authenticated user at that moment. The idea would be to add a Details + button that shows us the option to visit that user's profile.

image