First of all, thank you for contributing to Meilisearch! The goal of this document is to provide everything you need to know in order to contribute to Meilisearch and its different integrations.
- Assumptions
- How to Contribute
- Development Workflow
- Git Guidelines
- Release Process (for internal team only)
- You're familiar with GitHub and the Pull Request (PR) workflow.
- You've read the README.
- Make sure that the contribution you want to make is explained or detailed in a GitHub issue! Find an existing issue or open a new one.
- Once done, fork the meilisearch-symfony repository in your own GitHub account. Ask a maintainer if you want your issue to be checked before making a PR.
- Create a new Git branch.
- Review the Development Workflow section that describes the steps to maintain the repository.
- Make the changes on your branch.
- Submit the branch as a PR pointing to the
mainbranch of the main Global-Testing repository. A maintainer should comment and/or review your Pull Request within a few days. Although depending on the circumstances, it may take longer.
We do not enforce a naming convention for the PRs, but please use something descriptive of your changes, having in mind that the title of your PR will be automatically added to the next release changelog.
To set up and run Global-Testing locally, make sure you have Git and Docker installed on your system. Then run the command for your system:
Clone the project
git clone https://github.com/SeeTicketsFr/Global-Testing.gitCopy .env.example files
cd Global-Testing/ && cp .env.example .env
cd back/ && cp .env.example .env
Run containers - Production
docker compose up -d
Run containers - Development
docker compose -f compose.dev.yml up -d
Clone the project
git clone https://github.com/SeeTicketsFr/Global-Testing.gitCopy .env.example files
cd Global-Testing && copy .env.example .env
cd back/ && copy .env.example .env
Run containers - Production
docker compose up -d
Run containers - Development
docker compose -f compose.dev.yml up -d
Each Pull Request should pass the tests, and the linter to be accepted.
# Tests
cd back/ && make test
# lint
cd back/ && make check-all
cd front/ && make lint-codeAll changes must be made in a branch and submitted as PR. We do not enforce any branch naming style, but please use something descriptive of your changes.
As minimal requirements, your commit message should follow these rules We don't follow any other convention.
Some notes on GitHub PRs:
- Convert your PR as a draft if your changes are a work in progress: no one will review it until you pass your PR as ready for review.
The draft PR can be very useful if you want to show that you are working on something and make your work visible. - The branch related to the PR must be up-to-date with
mainbefore merging. - All PRs must be reviewed and approved by at least one maintainer.
- The PR title should be accurate and descriptive of the changes. The title of the PR will be indeed automatically added to the next release changelogs.
Thank you again for reading this through, we can not wait to begin to work with you if you made your way through this contributing guide ❤️