Create initial version of server

Just a very simple TCP echo server to get started with.
This commit is contained in:
2025-02-22 12:38:41 +00:00
parent a66b817ba3
commit bf5f517e85
7 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
% Copyright (c) Camden Dixie O'Brien
% SPDX-License-Identifier: AGPL-3.0-only
-module(study_system_server_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
Port = application:get_env(study_system_server, port, 12888),
proto_sup:start_link(Port).
stop(_State) ->
ok.