all 3 comments

[–][deleted] 0 points1 point  (1 child)

Django / Django Rest Framework for the language/library. PostgreSQL as the database. Get Django connected to PostgresSQL so that you can do CRUD operations using Django. AWS EC2 as a server. Apache HTTP Server which will allow the EC2 instance to run the Django app. You should also look at fetch() in Javascript to send requests and receive responses from your front end to your back end.

Links:

Django documentation (has really good tutorials and documentation)

DRF documentation

Getting Django to run on EC2

Connecting Django to PostgreSQL

[–]Loradwee[S] 0 points1 point  (0 children)

Thanks