Skip to content

Latest commit

 

History

History
51 lines (30 loc) · 1.59 KB

CONTRIBUTING.md

File metadata and controls

51 lines (30 loc) · 1.59 KB

Contributing

Thank you for contributing to the project. We'd love to see your issues and pull requests.

If you're creating a pull request, please consider these suggestions:

Fork, then clone the repo:

git clone [email protected]:your-username/dataloader.git

Install the dependencies:

mix deps.get

Make sure the tests pass.

Running tests for Dataloader requires a running instance of Postgres. The easiest way to do this is to run Postgres inside of Docker whilst running the Dataloader tests. In one terminal run:

docker run -p 5432:5432 -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=dataloader_test postgres

and in another terminal run:

MIX_ENV=test mix ecto.setup
mix test

If you kill the docker process, you will need to rerun the ecto.setup command as the data in the container is ephemeral (no mounted volumes are leveraged).

Make your change. Add tests for your change. Make the tests pass:

mix test

Push to your fork (preferably to a non-master branch) and submit a pull request.

We'll review and answer your pull request as soon as possible. We may suggest some changes, improvements, or alternatives. Let's work through it together.

Some things that will increase the chance that your pull request is accepted:

  • Write tests.
  • Include @typedocs, @specs, and @docs
  • Try to match the style conventions already present (and Elixir conventions, generally).
  • Write a good commit message.

Thanks again for helping!