igoroctaviano / disco-test

A simple React app to list albums from Discogs API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Disco Test

A filterable list of albums using React.js and the Discogs API.

Features

  • webpack 4
  • Babel
  • Staging ES features
  • Hot reload
  • React 16
  • Docker container (dev)
  • Jest snapshot test
  • PropTypes
  • less

Installation

git clone git@gitlab.com:igoroctaviano/disco-test.git
cd disco-test
npm install
npm start

Visit http://localhost:8080/.

Export your Discogs token (local)

The application uses your personal access token to retrieve data from the Discogs developer API. If you don't have it already, you can generate yours here.

export DISCOGS_TOKEN=<your_token>

Docker

Build image

docker build -t disco-test .

Run image

docker run -it --rm -v "$(pwd):/app" -p 8080:8080 -e DISCOGS_TOKEN=<your_token> --name disco-test disco-test

You have to your pass your Discogs token inside the container as a environment variable. Like the command above, you can pass environment variables to your containers with the -e flag.

Running Jest snapshot testing

To run the all snapshot tests you can use the command below:

npm run test:snapshot

Running tests in watch mode (second terminal):

npm run test:snapshot:watch

Bundling the app

npm run build

The app bundle will be generated inside the /dist directory.

About

A simple React app to list albums from Discogs API


Languages

Language:JavaScript 75.2%Language:CSS 23.3%Language:Dockerfile 1.5%