## GREEN TEAM THE DREAM TEAM

This is a simple react application that will serve as a proof of concept demo for Team 2's album artwork ml hackathon project.

##### Running locally
Clone the collab repo and navigate to the project's root folder
```
git clone https://github.com/theorchard/collab
cd collab/jviletto/artwork-hackathon
```
Assuming you have Yarn installed (and if not simply do `brew install yarn`) install the dependencies:
```
yarn install
```

And then simply start up the dev server
```
yarn start
```

And the application should not be running on `http://localhost:1234`.
You can specify a different port like `yarn start --port 8080`.

##### Preparing for deploy

To generate built css, js and an index.html file to be hosted on a webserver run:
```
yarn run build
```
And the necessary assets will be generated under the `dist/` folder.
