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:
bun install- Then run the following command to bootstrap the project
bun run bootstrap- Then we need to link an specific package you need with the following command (for example job package):
cd packages/jobs
bun 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:
bun link "@orion-js/jobs"