https://github.com/stringparser/omdbapi-app
Some basic UI for the OMDb API
https://github.com/stringparser/omdbapi-app
Last synced: 11 months ago
JSON representation
Some basic UI for the OMDb API
- Host: GitHub
- URL: https://github.com/stringparser/omdbapi-app
- Owner: stringparser
- Created: 2018-08-28T19:26:00.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-29T18:12:54.000Z (over 7 years ago)
- Last Synced: 2025-01-09T04:08:43.433Z (about 1 year ago)
- Language: TypeScript
- Size: 83 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# omdbapi-app
A small application to add movies from [OMDB](http://www.omdbapi.com/);
# setup and development
First get an [OMDB api key](http://www.omdbapi.com/apikey.aspx).
Then, to setup the project, you can either use the `Dockerimage` or install `node`. Either way, clone the project first
```sh
git clone git@github.com:stringparser/omdbapi-app.git
cd omdbapi-app
```
and you have docker run
```sh
docker build -t omdbapi --build-arg OIMDBAPI_KEY= .
docker run -p 3000:8080 -d omdbapi
```
or if you want to install `node` and run the project locally
```sh
curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
exec $SHELL
nvm install 8.11.1
npm install
OIMDBAPI_KEY= npm run dev
```
To see the app running go to `http://localhost:3000`.