acodex_server
is a Rust-based backend/server for the Acodex plugin
. It provides a lightweight, independent, secure, and fast solution.
- Lightweight
- Secure
- fast
- uses system pty
- automatic update checking
To install axs
on your system, simply use the following command:
curl -L https://raw.githubusercontent.com/bajrangCoder/acodex_server/main/install.sh | bash
axs
will automatically notify you whenever a new update is available. With a simple command:
axs update
you can easily update it without any hassle.
Note
This feature is available from v0.2.0
onwards. For older versions, please use the installation script to update.
$ axs --help
CLI/Server backend for AcodeX Acode plugin
Usage: axs [OPTIONS] [COMMAND]
Commands:
update Update axs server
help Print this message or the help of the given subcommand(s)
Options:
-p, --port <PORT> Port to start the server [default: 8767]
-i, --ip Start the server on local network (ip)
-h, --help Print help
-V, --version Print version
Note
If you encounter any issues, please create an issue on GitHub.
To build acodex_server from source, follow these steps:
-
Clone the repository:
git clone https://github.com/your-username/acodex_server.git
-
Ensure that Rust is installed on your system.
-
Navigate to the project directory:
cd acodex_server
-
Build the project:
cargo build --release
-
Use the generated binary located at
/target/release/axs
.