https://github.com/mobingi/mobingi
Official command line interface for Mobingi services.
https://github.com/mobingi/mobingi
cli go golang mobingi
Last synced: 5 months ago
JSON representation
Official command line interface for Mobingi services.
- Host: GitHub
- URL: https://github.com/mobingi/mobingi
- Owner: mobingi
- License: mpl-2.0
- Created: 2019-02-06T07:03:05.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-11T09:32:31.000Z (over 7 years ago)
- Last Synced: 2024-06-20T15:42:27.282Z (almost 2 years ago)
- Topics: cli, go, golang, mobingi
- Language: Go
- Homepage:
- Size: 11 MB
- Stars: 1
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://mobingi.com/)
[](https://circleci.com/gh/mobingi/mobingi/tree/master)
[](https://ci.appveyor.com/project/flowerinthenight/mobingi/branch/master)
# Overview
`mobingi` is the official command line interface for [Mobingi](https://mobingi.com/) API and services.
See the documentation on https://docs.mobingi.com/v/cli-en/.
# Getting started
### Getting the cli
The easiest way to get `mobingi` is to use one of the [pre-built release binaries](https://github.com/mobingi/mobingi/releases) which are available for OSX, Linux, and Windows.
If you want to try the latest version, you can build `mobingi` from the master branch. You need to have [Go](https://golang.org/) installed (version 1.8+ is required). Note that the master branch may be in an unstable or even broken state during development.
### Building the cli
```bash
$ git clone https://github.com/mobingi/mobingi
$ cd mobingi
$ go build -v
$ ./mobingi
```
You can also install the binary to your `$GOPATH/bin` folder (`$GOPATH/bin` should be added to your `$PATH` environment variable).
```bash
$ go get -u -v github.com/mobingi/mobingi
$ mobingi
```