aboutsummaryrefslogtreecommitdiff
path: root/cmd/mobius-hotline-server/main.go
AgeCommit message (Collapse)Author
2024-06-01If no predefined default path for server config, look in the current dirCharlotte Koch
2024-03-28Add cmdline flag to specify network interfaceJeff Halter
2023-04-19Ran 'golangci-lint run -E gocritic,whitespace --fix' 🤞Jeff Halter
2023-04-19Replace deprecated rand.Seed usageJeff Halter
2022-11-03Add optional logging to fileJeff Halter
2022-07-04Add basic stat countersJeff Halter
2022-06-20Convert hardcoded path separators to filepath.JoinJeff Halter
2022-06-20Add initial support for resource and info forksJeff Halter
2022-06-19Mobius 38 - improve config dir flag.Ben Abernathy
2022-06-12Simplify the behavior of init with an existing configJeff Halter
Old behavior: if config dir found, exit with message New behavior: if config dir found, log a message and continue This simplifies the process for new users.
2022-06-10Add cmdline arg to initialize a default configJeff Halter
2022-06-08Add flag to enable optional stats HTTP endpointJeff Halter
re: #29 TODO: add more stat counters Usage: ``` ./mobius-hotline-server -stats-port 5503 ``` ``` ❯ curl -s localhost:5503 | jq . { "LoginCount": 0, "StartTime": "2022-06-08T20:49:10.183921-07:00", "DownloadCounter": 0, "UploadCounter": 0 } ```
2022-06-08Refactor filestore to simplify testingJeff Halter
2022-06-06Handle both possible brew install pathsJeff Halter
2022-06-06Seed the random number generatorJeff Halter
2022-05-28Misc cleanupJeff Halter
* Removed some unnecessary user of pointers * Removed dead cruft * Reorganized code
2021-08-15Tests and minor fixesJeff Halter
2021-07-29Re-organize cmd pathsJeff Halter