Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

Latest commit

 

History

History
34 lines (21 loc) · 1.3 KB

README.md

File metadata and controls

34 lines (21 loc) · 1.3 KB

GraphQL-Modules seed

Introduction

This repository is a seed to start GraphQL-Modules projects.

It includes a couple of modules which depend on each other, but in the future I will expand it to include an User module and an Authentication module as well.


Includes

Installation

To get started locally, follow these instructions:

  1. Clone to your local computer using git.
  2. Make sure that you have Node installed; see instructions here.
  3. Make sure that you have yarn installed; see instructions here.
  4. Run yarn (no arguments) from the root of your clone of this project.

Running the seed

To run the seed, follow these instructions:

  1. yarn generate. This will Generate server-side TypeScript types.
  2. yarn start. This will use ts-node to compile and run the project.

If you want it to automatically restart the application when changes in the directory are detected, you can use yarn dev instead (it's backed by nodemon).