Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gprimola/jenkiexs
Jenkiexs is a [Jenkins](https://www.jenkins.io/) client written in Elixir.
https://github.com/gprimola/jenkiexs
client elixir http-client jenkins
Last synced: 2 months ago
JSON representation
Jenkiexs is a [Jenkins](https://www.jenkins.io/) client written in Elixir.
- Host: GitHub
- URL: https://github.com/gprimola/jenkiexs
- Owner: GPrimola
- Created: 2020-05-29T17:43:46.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-02-17T09:01:40.000Z (11 months ago)
- Last Synced: 2024-10-12T01:42:38.002Z (3 months ago)
- Topics: client, elixir, http-client, jenkins
- Language: Elixir
- Homepage:
- Size: 359 KB
- Stars: 1
- Watchers: 1
- Forks: 7
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jenkiexs
![CI](https://github.com/GPrimola/jenkiexs/workflows/Main%20CI/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/GPrimola/jenkiexs/badge.svg?branch=master)](https://coveralls.io/github/GPrimola/jenkiexs?branch=master)
[![Docs](https://img.shields.io/badge/api-docs-blueviolet.svg?style=flat)](https://hexdocs.pm/jenkiexs)
![Hex.pm](https://img.shields.io/hexpm/v/jenkiexs)[Jenkins](https://www.jenkins.io/) client written in Elixir.
---
## Installation
Add `jenkiexs` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:jenkiexs, "~> 1.0.1"}
]
end
```## Usage
You can export `JENKINS_URL`, `JENKINS_USERNAME` and `JENKINS_TOKEN` env vars;
or```elixir
config :jenkiexs, :client,
url: "http://jenkins.url",
username: "username",
token: "1a2b3c4d5e6f"
```Note: be aware that if you have both set, preference will be for the application configuration, rather than env vars.