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

https://github.com/plesk/pleskapp

A tool to manage Plesk servers remotely from local console
https://github.com/plesk/pleskapp

Last synced: 4 months ago
JSON representation

A tool to manage Plesk servers remotely from local console

Awesome Lists containing this project

README

          

[![build](https://github.com/plesk/pleskapp/actions/workflows/test.yml/badge.svg)](https://github.com/plesk/pleskapp/actions?query=workflow%3Atest)
[![Go Report Card](https://goreportcard.com/badge/github.com/plesk/pleskapp)](https://goreportcard.com/report/github.com/plesk/pleskapp)
[![Scc Count](https://sloc.xyz/github/plesk/pleskapp/)](https://github.com/plesk/pleskapp/)
[![Codecov](https://codecov.io/gh/plesk/pleskapp/graph/badge.svg?token=71268FOTU5)](https://codecov.io/gh/plesk/pleskapp)

# PleskApp CLI

PleskApp CLI is a tool that is installed on your local machine (not on the Plesk one) to manage Plesk remotely
from the console. Target audiences are experienced administrators and developers who like to speed up the
operations, automate routine procedures, manage the things using CLI.

Current development status is "early alpha version".

# Demo

![Demo](./demo.svg)

# Features

Here is the list of features:
* `plesk servers` - Manage known servers
* `plesk login` - Automatic login to the server (in the browser)
* `plesk ssh` - Login to server using SSH
* `plesk domains` - Manage domains on the server
* `plesk databases` - Manage databases on the server
* `plesk web` - Run local web server to serve current directory
* `plesk deploy` - Deploy the app from the current directory to default server
* Bash and ZSH autocompletion support

# Installation

Here is the command to install the utility:

```
curl -fsSL https://raw.githubusercontent.com/plesk/pleskapp/master/install.sh | bash
```

The utility will be installed to `/usr/local/bin/` directory, so please make sure the path is present in PATH
environment variable. To test it one can use the following command:

```
plesk version
```

Alternative way if you have Go 1.25+ installed:

```
go install github.com/plesk/pleskapp/plesk
```

# How to Build

The utility is written in Go, so the corresponding toolchain should be installed first.

There is a Makefile with bunch of targets. One can use the following command to build the binary:

```
make
```