Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/believer/soundtrackdb

A database of soundtracks for movies and games
https://github.com/believer/soundtrackdb

graphql lerna postgraphile postgresql reasonml relay

Last synced: about 2 months ago
JSON representation

A database of soundtracks for movies and games

Awesome Lists containing this project

README

        

# Soundtrack DB

A database of soundtracks for movies and games.

## Get started

`npx lerna bootstrap` to install all dependencies

### Frontend

```sh
$ cd packages/web
$ yarn start # Start BuckleScript compiler
$ yarn relay:watch # In another terminal, start Relay compiler
$ yarn server # In another terminal, start Webpack
```

Open http://localhost:8000 in your favorite browser

### API

API is only PostGraphile at this point.

```sh
$ cd packages/api
$ docker-compose up -d # Start database
$ yarn migrate up # Insert tables and data
$ yarn db:restore # Seed database
$ yarn start
```

## Tech

- [ReasonML (ReasonReact)](https://reasonml.github.io/reason-react/)
- [Relay](https://relay.dev/)
- [PostgreSQL](https://www.postgresql.org/)
- [PostGraphile](https://www.graphile.org/postgraphile/)