3 Mobius is a cross-platform command line [Hotline](https://en.wikipedia.org/wiki/Hotline_Communications) server, client, and library developed in Golang.
5 The project aims to support Hotline functionality from versions v1.2.3 and >v1.5 (e.g. threaded news and folder transfers).
11 * Near feature complete
15 * Early stage with functionality for chat and news posting only
21 For Mac OS the easiest path to installation is to install through Homebrew.
25 brew install jhalter/mobius-hotline-client/mobius-hotline-client
27 After installation `mobius-hotline-client` installed to `/usr/local/bin/mobius-hotline-client` and should be in your $PATH.
29 The client config file is in `/usr/local/etc/mobius-client-config.yaml`
31 Run `mobius-hotline-client -help` for usage options.
35 brew install jhalter/mobius-hotline-server/mobius-hotline-server
37 After installation `mobius-hotline-server` installed to `/usr/local/bin/mobius-hotline-server` and should be in your $PATH.
39 The server config file directory is under `/usr/local/var/mobius` which by default contains:
41 /usr/local/var/mobius/config/MessageBoard.txt
42 /usr/local/var/mobius/config/config.yaml
43 /usr/local/var/mobius/config/ThreadedNews.yaml
44 /usr/local/var/mobius/config/Agreement.txt
45 /usr/local/var/mobius/config/Users/guest.yaml
46 /usr/local/var/mobius/config/Users/admin.yaml
48 Edit `/usr/local/var/mobius/config/config.yaml` to change your server name and other settings.
50 Edit `/usr/local/var/mobius/config/Agreement.txt` to set your server agreement.
52 Run `mobius-hotline-server -help` for usage options.
56 Download a compiled release for your architecture from the Releases page
64 To run the Mobius server from Docker with a local directory mounted for config and files, follow these steps:
66 1. Clone this repo: `git clone https://github.com/jhalter/mobius.git`
67 2. Copy the config dir somewhere `cp -r cmd/mobius-hotline-server/mobius/config ~/mobius-config`
68 3. Build the Docker image: `docker build . -t mobius-hotline-server:latest`
70 `docker run --rm -p 5500:5500 -p 5501:5501 -v ~/mobius-config:/usr/local/var/mobius/config mobius-hotline-server:latest`
75 To build from source, run: