https://github.com/drowzy/tide-ci
Agentless CI
https://github.com/drowzy/tide-ci
agentless ci docker elixir
Last synced: 2 months ago
JSON representation
Agentless CI
- Host: GitHub
- URL: https://github.com/drowzy/tide-ci
- Owner: drowzy
- Created: 2017-10-21T20:15:58.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-23T06:57:01.000Z (about 8 years ago)
- Last Synced: 2025-02-16T11:14:08.395Z (over 1 year ago)
- Topics: agentless, ci, docker, elixir
- Language: Elixir
- Size: 319 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tide
**TODO: Add description**
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `tide_ci` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:tide_ci, "~> 0.1.0"}
]
end
```
## Examples
```
POST http://localhost:4000/api/v1/hosts
Content-Type: application/json
{
"name": "my.vm.host",
"is_active": true,
"hostname": "192.168.90.15",
"description": "coolest host ever built",
"credentials": {
"user": "ubuntu"
}
}
```
```
PUT http://localhost:4000/api/v1/hosts/8ea76b34-b53c-4ba1-8058-e66ccedda701/connect
Content-Type: application/json
Accept: application/json
{
"user": "ubuntu"
}
```
* Add project
```
POST http://localhost:4000/api/v1/projects
Content-Type: application/json
Accept: application/json
{
"vcs_url": "git@github.com:drowzy/tide-ci.git",
"owner": "drowzy",
"name": "tide-ci",
"description": "Agent less CI"
}
```
* Start job
```
POST http://localhost:4000/api/v1/projects//jobs
```