https://github.com/yash509/devsecops-react-movie-app
Developed a Movie App by using API in React
https://github.com/yash509/devsecops-react-movie-app
aws azure cloud css docker dockerfile gcp hcl html javascript jenkins-pipeline kubernetes react terraform
Last synced: 5 months ago
JSON representation
Developed a Movie App by using API in React
- Host: GitHub
- URL: https://github.com/yash509/devsecops-react-movie-app
- Owner: yash509
- License: mpl-2.0
- Created: 2024-03-26T06:13:48.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-27T05:47:32.000Z (over 2 years ago)
- Last Synced: 2025-06-11T11:22:32.269Z (about 1 year ago)
- Topics: aws, azure, cloud, css, docker, dockerfile, gcp, hcl, html, javascript, jenkins-pipeline, kubernetes, react, terraform
- Language: JavaScript
- Homepage:
- Size: 19.8 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# DevSecOps-React-Movie-App
API Used:-
Open Movie Database (OMDB) API
Generate API key from : http://www.omdbapi.com/apikey.aspx
API Info:-
Method: GET
Search URL: https://www.omdbapi.com/?s={MOVIE_NAME}&apikey={API_KEY}
Movie Details URL: https://www.omdbapi.com/?i={MOVIE_ID}&apikey={API_KEY}
How It Works:-
Search a movie in the search input
Grabs the movie information from OMDB API.
Information is returned has a JSON object
Using React components to structure data into presentational format
Using CSS to create visually appealing and user friendly application
Docker to use to vuild docker image:-
docker build --build-arg OMDB_V3_API_KEY= -t movie-app .