Thank you for investing your time in contributing to our project!
Reading and following these guidelines will help us make the contribution process easy and effective for everyone involved.
This can be done by following these steps:
- Create a class in execution folder that extends Execution class (naming: <Language_Name>Execution, exp: CExecution or CPPExecution)
- Register this execution class in the LanguageConfig.java class.
- Create a Dockerfile (in executions folder) containing the official image of the language.
- Add E2E tests for this language (Note: your PR won't be merged without E2E tests).
All you need to do is to provide an implementation of ContainerService.class and use it as the primary bean.
All config classes should be inside this folder.
This folder contains execution classes responsible for creating an environment of execution for a specific programming language.
Each class has its corresponding factory.
All Controllers should be inside this folder.
Java beans, components and services should be inside this folder.
This folder is for stream processing, all Apache Kafka related code is present there.
All exceptions should be inside this folder.
This folder contains code related to RabbitMq.
If you spot a problem with the compiler, search if an issue already exists. If a related issue doesn't exist, you can open a new one.
- Don't forget to link PR to issue if you are solving one.
- We may ask for changes to be made before a PR can be merged, either using suggested changes or pull request comments. You can apply suggested changes directly through the UI. You can make any other changes in your fork, then commit them to your branch.
- As you update your PR and apply changes, mark each conversation as resolved.
- If you run into any merge issues, checkout this git tutorial to help you resolve merge conflicts and other issues.