Skip to content

Latest commit

History

History
34 lines (21 loc) 路 647 Bytes

File metadata and controls

34 lines (21 loc) 路 647 Bytes

Nexus tutorial

This is the final code of the GraphQL API built in the Nexus tutorial 馃殌.

Code will evolve as we update the tutorial.

Usage

1. Install the dependencies

npm install

2. Setup the PostgreSQL database (using Docker)

docker run --detach --publish 5432:5432 -e POSTGRES_PASSWORD=postgres --name postgres postgres:10.12

3. Start the server

To interact with the API in a GraphQL Playground, all you need to do is execute the dev script defined in the package.json:

npm run dev

4. Run the tests

npm run test