servers/README.md

32 lines
1.3 KiB
Markdown
Raw Normal View History

2022-06-25 19:41:25 +00:00
# Servers - Simple TCP and WebSocket server
2022-06-16 18:22:30 +00:00
[docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&logo=docs.rs
[total-lines]: https://img.shields.io/tokei/lines/github/MedzikUser/servers?style=for-the-badge&logo=github&color=fede00
[code-size]: https://img.shields.io/github/languages/code-size/MedzikUser/servers?style=for-the-badge&color=c8df52&logo=github
[ci]: https://img.shields.io/github/workflow/status/MedzikUser/servers/Rust/main?style=for-the-badge
2022-06-17 09:45:38 +00:00
[image]:https://socialify.git.ci/MedzikUser/servers/image?description=1&font=KoHo&language=1&owner=1&pattern=Circuit%20Board&theme=Light
2022-06-16 18:22:30 +00:00
[![docs-rs]](https://servers.medzik.xyz)
[![total-lines]](https://github.com/MedzikUser/servers)
[![code-size]](https://github.com/MedzikUser/servers)
[![ci]](https://github.com/MedzikUser/servers/actions/workflows/build.yml)
2022-06-17 09:45:38 +00:00
[![image]](https://github.com/MedzikUser/servers)
2022-06-25 19:41:25 +00:00
A simple TCP server for clients and WebSocket server written in Rust 🦀 which can be extended with plugins.
2022-06-16 18:22:30 +00:00
## 👨‍💻 Building
First clone the repository: `git clone https://github.com/MedzikUser/servers.git`
### Requirements
- Rust
To build run the command: `cargo build --release`
The compiled binary can be found in `./target/release/servers`
2022-06-26 08:38:27 +00:00
## Writing plugins
Read the docs from [plugins](https://servers.medzik.xyz/servers/plugins) module.