An open API service indexing awesome lists of open source software.

https://github.com/intecture/installer

Installer for Intecture components
https://github.com/intecture/installer

Last synced: about 1 year ago
JSON representation

Installer for Intecture components

Awesome Lists containing this project

README

          

# installer

Installer script for Intecture components that powers https://get.intecture.io.

```
Usage: get.sh [-u -y] [-d ] (agent | api | auth | cli)

Flags:
-d Specify the path to use as a work directory
-u Uninstall component instead of installing it
-y Answer "yes" to prompts
```

For example, to install the API without prompts, you would run:

```
$ curl -sSf https://get.intecture.io/ | sh -s -- -y api
```

To uninstall it, just pass the `-u` flag:

```
$ curl -sSf https://get.intecture.io/ | sh -s -- -u api
```

If you want to cache an Intecture package locally, you must specify a work directory to use, which will not be cleaned up after installation:

```
$ curl -sSf https://get.intecture.io/ | sh -s -- -d /var/cache/incli cli
```