Skip to content
/ cli Public
forked from hossted/cli

The hossted cli - built to interact with a hossted agent and the hossted API

License

Notifications You must be signed in to change notification settings

lazyest/cli

 
 

Repository files navigation

hossted cli

The hossted cli - built to interact with a hossted container

Table of Contents

Command

Command Command Example Descriptions
register hossted register Register email and organization
set Change application settings
hossted set list List all the commands of the available applications
hossted set auth <AppName> true Set authorization of the provided application
hossted set domain <AppName> example.com Set the domain of the provided application
hossted set ssl <AppName> sign (TBC)
hossted set remote-support true To enable or disable remote ssh access with our maintanece and support key
logs hossted logs <AppName> View Application logs
ps hossted ps <AppName> docker compose ps of the application
version hossted version Get the version of the hossted CLI program
ip - (TBC) Get external and internal ip addresses
dashboard - (TBC) Open browser with dashboard



Pre-requisite

uuid

uuid being saved under /opt/hossted/run/uuid.txt or /opt/linnovate/run/uuid.txt

<uuid>

software.txt

software.txt being saved under /opt/hossted/run/software.txt or /opt/linnovate/run/software.txt, and it should be in this format to get the available applications

Linnovate-<CloudProvider>-<Application>

Example

Linnovate-AWS-gitbucket

sudo access

  • user should have sudo access for most of the change setting commands, docker commands, etc.. to work.



Installation

Binary

Generally it is not a good idea to download the binary file directly from anywhere on the web. But if you do not have Go environment setup, you can download the compiled file here.

Operating System Branch Binary
Linux Prod (64-bit) Main Here
Linux Dev (64-bit) Dev Here

Source

Or you can just install it with go install from the source

git clone https://github.com/hossted/cli.git
cd cli
go install .

Manual

Prod

wget https://github.com/hossted/cli/raw/main/bin/linux/hossted
chmod 755 hossted
sudo cp ./hossted /usr/local/bin

Dev

wget https://github.com/hossted/cli/raw/dev/bin/dev/hossted
mv hossted hossted-dev
chmod 755 hossted-dev
sudo cp ./hossted-dev /usr/local/bin

Version

Get the version with following command

hossted version

Result

# or more recent
hossted version v0.1.5.
Built on 2022-04-10 (24b8619)



Usage

  1. Generate help on the commands with -h or --help

    hossted -h
    hossted register -h
    

  2. Register users hossted register

  3. Config file is saved under ~/.hossted/config.yaml

    email: [email protected]
    userToken:
    sessionToken: eyJhbGdaOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1aWQiOjIzLCJpYXQiOjE2NDY4NDIxOTAsImV4cCI6MTY0NjkyODU5MH0.JMUCLFMHLznZ7Dc0uNFhFFS0J-LqoB_mAehnMFFwgfs
    uuidPath: /opt/linnovate/run/uuid.txt
    applications:
        - appName: prometheus
          appPath: /opt/prometheus
        - appName: demoapp
          appPath: /opt/demoapp

t2

About

The hossted cli - built to interact with a hossted agent and the hossted API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 98.5%
  • Makefile 1.5%