This project aims to demonstrate the faculties acquired so far for the Nanodegree FullStack Web Developer program.
The goal of this project is to run server-side code to store a list of favorite movies, including box art images and a movie preview URL. Next, it will serve this data as a web page that allows visitors to review their movies and see the progress. The project can be cloned or downloaded from the following URL. https://github.com/hack2024/movie_web_trailer.git
This project requires Pyton 2.7 to run.
Install the Python interpreter.
$ brew install python@2Because python@2 is a “keg”, we need to update our PATH again, to point at our new installation:
$ export PATH="/usr/local/opt/python@2/libexec/bin:$PATH"Homebrew names the executable python2 so that you can still run the system Python via the executable python.
$ python -V # Homebrew installed Python 3 interpreter (if installed)
$ python2 -V # Homebrew installed Python 2 interpreter
$ python3 -V # Homebrew installed Python 3 interpreter (if installed)Download and install python from the next link. https://www.python.org/ftp/python/2.7.15/python-2.7.15rc1.amd64.msi
Now we can execute the project.
Unix
$ cd to_the_project_folder
$ python movie_website_project/app/app_main.pyWindows
On windows is the same thing, go to the project folder and execute the app_main.py python script from the console.
At this moment the application should raise a browser and show the website with the favorite movies so you can see the title, art image, a short description and a trailer of the movie.
Fernando Balmaceda - [email protected]
To improve the style of the page, I used a part of a template called CANVAS (Copyrights © 2014 All Rights Reserved by Canvas Inc.)