A Node framework to build GraphQL server apps.
In order to deploy orionjs in your local you have to do the following:
- Fork the repo
- Clone the project forked
- Inside the folder created with the clone command, run the following command:
yarn install- Then run the following command to bootstrap the project
yarn bootstrap- Then we need to link an specific package you need with the following command (for example job package):
cd packages/jobs
yarn link- 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"