Thank you for your interest in contributing to Openverse! This document is a set of guidelines to help you contribute to this project.
By participating in this project, you are expected to uphold our Code of Conduct.
Please consult the README file at the root of this repository. Also see the project documentation guidelines if you are interested in improving our documentation.
If you find a bug, please open an issue in this repository describing the bug. You can file a bug here. You will see a bug report template with the required information you should provide.
After that, don't forget to tag the issue with the "Bug" label.
Feel free to open an issue to discuss any new features or to propose any changes.
Before you start writing code, make sure there is an issue open. Pull requests without a link to an existing issue won't be merged.
If you want to get started contributing code to this project but don't know
exactly what to work on, we compiled a good list of issues labeled as
good first issue
which are small in scope and not so complex to solve. There are also issues
labeled as
help wanted
which can be a bit more complex but are good examples of things we are currently
accepting help from the community.
Any code modifications will have to be accompanied by the appropriate unit tests. This will be checked and verified during code review. Once the Pull Request is opened, our CI server will run the unit test suite and run a code linter to verify that the code follows the coding guidelines.
You can check the health of a live deployment of the API by running the live integration tests.
- Change directory to
openverse_api
cd openverse_api
- Install all dependencies for Openverse API
pipenv install
Note: The following non-Python libraries or binaries are transient dependencies which will also need to be present on your computer for the project to run and install as expected:
librdkafka
exempi
audiowaveform
- Launch a new shell session
pipenv shell
- Run API live integration test
./test/run_test.sh
You can ingest and index some dummy data using the Ingestion Server API.
- Change directory to ingestion server
cd ingestion_server
- Install all dependencies for Ingestion Server API
pipenv install
- Launch a new shell session
pipenv shell
- Run the integration tests
python3 test/integration_tests.py
Feel free to join us on Slack and discuss the project with the engineers and community members on #openverse.