Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manifoldco/manifold-cli
Manage your services and config from the command line
https://github.com/manifoldco/manifold-cli
command-line-tool deployment golang
Last synced: 3 months ago
JSON representation
Manage your services and config from the command line
- Host: GitHub
- URL: https://github.com/manifoldco/manifold-cli
- Owner: manifoldco
- License: bsd-3-clause
- Created: 2017-07-06T12:26:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-03-14T19:39:20.000Z (over 5 years ago)
- Last Synced: 2024-08-12T06:19:57.428Z (3 months ago)
- Topics: command-line-tool, deployment, golang
- Language: Go
- Homepage: https://www.manifold.co/cli
- Size: 582 KB
- Stars: 45
- Watchers: 27
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# manifold-cli
Manage your cloud services like a developer.
[Homepage](https://manifold.co) |
[Twitter](https://twitter.com/manifoldco) |
[Code of Conduct](./CODE_OF_CONDUCT.md) |
[Contribution Guidelines](./.github/CONTRIBUTING.md)[![Travis](https://img.shields.io/travis/manifoldco/manifold-cli/master.svg)](https://travis-ci.org/manifoldco/manifold-cli)
[![Go Report Card](https://goreportcard.com/badge/github.com/manifoldco/manifold-cli)](https://goreportcard.com/report/github.com/manifoldco/manifold-cli)
[![License](https://img.shields.io/badge/license-BSD-blue.svg)](./LICENSE.md)## Installation
### Install script
To install or update manifold, you can use the install script using cURL:
```
curl -o- https://raw.githubusercontent.com/manifoldco/manifold-cli/master/install.sh | sh
```You can customize the install directory, profile, and version using the
`MANIFOLD_DIR`, `PROFILE` and `MANIFOLD_VERSION` variables. Eg: `curl ... |
MANIFOLD_DIR=/usr/local sh` for a global install.### Homebrew (OS X)
Homebrew can be installed via [brew.sh](http://brew.sh)
```
$ brew install manifoldco/brew/manifold-cli
```### Zip Archives (OS X, Linux, Windows)
Bare zip archives per release version are available on https://releases.manifold.co
For instructions on Windows, [click here](./.github/WINDOWS.md).
## Autocomplete
If you have bash and bash-completion installed, you can enable autocomplete with:
```
curl -o- https://raw.githubusercontent.com/manifoldco/manifold-cli/master/autocomplete.sh | sh
```## Quickstart
First you must create an account.
```
$ manifold signup
```Then you can create your first resource.
```
$ manifold create
```Followed by running your process with the appropriate ENV.
```
$ manifold run ./bin/server
```## License
Manifold's manifold-cli is released under the [BSD 3-Clause License](./LICENSE.md).