Back to articles
Deploying a Flask Application On AWS with CI/CD Pipeline

Deploying a Flask Application On AWS with CI/CD Pipeline

via Dev.tolmprojectdevto

Python Flask Application This project was to create a web application, that's a daily movie quiz. This quiz will first display the year of release and genres of a movie alongside the Rotten Tomatoes critic and audience score. The user will enter a guess, if they are incorrect, the next clue given will be a snippet of a review provided by Rotten Tomatoes. The user will be given a number of attempts and reviews before being told the answer and the next day a new set of clue will be provided for a new movie. To create this web application I used Python Flask. Python Flask is a web application framework, allowing for the creation of web applications and APIs. This project uses this framework to create a web page and API that sends a GET request to a PostgreSQL database, and display the results of this request on the HTML web page. JavaScript To dynamically display the returned data from the GET request, JavaScript is used to take advantage of DOM Manipulation. DOM Manipulation is used to a

Continue reading on Dev.to

Opens in a new tab

Read Full Article
3 views

Related Articles