2025-08-01 00:56:05 +03:00
2025-08-20 10:12:44 +03:00
2025-08-05 22:09:33 +03:00
2025-08-02 16:12:08 +03:00
2025-08-09 10:41:01 +03:00
2025-07-30 12:00:21 +03:00
2025-07-10 18:04:53 +03:00

Go Sally MVP (Minimum/Minimal Viable Product)

What is this?

System that allows you to build your own infrastructure based on identical nodes and various scripts written using built-in Lua 5.1, shebang scripts (scripts that start with the #! symbols), compiled binaries.

Features

Go Sally is not viable at the moment, but it already has the ability to run embedded scripts, log slog events to stdout, handle RPC like requests, and independent automatic update from the repository (my pride, to be honest).

Example of use

The basic directory tree looks something like this

.
├── bin
│   └── node			Node core binary file
├── com
│   ├── echo.lua
│   ├── _globals.lua	Declaring global variables and functions for all internal scripts (also required for luarc to work correctly)
│   └── _prepare.lua	Script that is executed before each script launch
└── config.yaml

3 directories, 5 files

Launch by command

./bin/node run

or for structured logs

./bin/node run | jq

Example of GET request to server

curl -s http://localhost:8080/api/v1/com/echo?msg=Hello

Then the response from the server

{
  "ResponsibleAgentUUID": "4593a87000bbe088f4e79c477e9c90d3",
  "RequestedCommand": "echo",
  "Response": {
    "answer": "Hello",
    "status": "ok"
  }
}

How to install

You don't need it now, but you can figure it out with the Makefile

Description
GoSally - a system for easily building your own infrastructure (someday)
Readme BSD-3-Clause 41 MiB
Languages
Go 86.3%
Lua 11.7%
Makefile 2%