Skip to content

v1.0.1

Latest
Compare
Choose a tag to compare
@Maxoulfou Maxoulfou released this 26 Jun 00:02

Release note

Correction of procedures in the 'config' package on the config loader

Details about theses changes:

Late in the night, I realized that the code was not cross-platform when I ran it on my linux bone.
A problem was found in the config loader. The method of obtaining the path is not viable, it will be redone in the next versions. So I added a piece of code to fix this problem until I find a more reliable and viable patch.
If you have any problem with my CLI, don't hesitate to contact me via my mail : maxence[at]brochier[dot]xyz with the tag of your pull request in subject if you make one.

// Here is the code snippet to solve the problem
func CheckOsForConfig() string {
	var FilePath = ""
	if runtime.GOOS == "windows" {
		FilePath = FilePathWin
	} else {
		FilePath = FilePathUnix
	}

	return FilePath
}

Coming Soon:

  • Multiple server management
  • Front-End addon

Features✨

List of available commands

  • boot
    • details : Launch your VPS (not through the window) but to access it and its services
  • shutdown
    • details : Simply turn off your VPS
  • reboot
    • details : Restart your VPS, it will automatically turn off and on within 5 minutes
  • status
    • details : Get the current status of your VPS as well as its statusMSG, its status vm stat, its hostname and its IP
  • info
    • details : Get the current status of your VPS as well as its hostname and IP