Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# StackRoost CLI 🐧

A simple and powerful terminal-based tool to manage Linux web servers. Built in Go, it supports popular stacks like **Apache**, **Nginx**, and **Caddy**, with domain and user management features.

---

## Features

- Manage Apache, Nginx, and Caddy services
- Add, remove, and update virtual hosts/domains
- Manage Linux users for deployments
- Backup and restore configurations
- SSL configuration helpers
- Interactive CLI prompts
- Easy setup with clean terminal UI

---
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module stackroost

go 1.22.3
go 1.22

require github.com/spf13/cobra v1.9.1

Expand Down
5 changes: 5 additions & 0 deletions internal/utils.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package internal

func IsNilOrEmpty(s string) bool {
return s == "" || s == "<nil>"
}
Loading