It is an example project for Reactjs development.
After then clone project, you have to create .env file on root of project. You can copy .env.example.
cp .env.example .env
You should add your The Movie Database API KEY
API_KEY='<<YOUR-API-KEY>>'
Use docker
docker build -t moviedb-react-example-project .
docker run -p 3000:3000 moviedb-react-example-project
After then these commands, project will run on localhost:3000
or you can use
npm install
npm start