Skip to content

orionjs/orionjs

Repository files navigation

Orionjs

A Node framework to build GraphQL server apps.

orionjs.com

Development

In order to deploy orionjs in your local you have to do the following:

  1. Fork the repo
  2. Clone the project forked
  3. Inside the folder created with the clone command, run the following command:
yarn install
  1. Then run the following command to bootstrap the project
yarn bootstrap
  1. Then we need to link an specific package you need with the following command (for example job package):
cd packages/jobs
yarn link
  1. In your project that is using orionjs, you need to run the following command in order to use the local instance of the package:
yarn link "@orion-js/jobs"