Now we can start the application from the commandline, and still use supervisors.
This commit is contained in:
parent
72e411aee9
commit
af75d731b4
7 changed files with 20 additions and 4 deletions
13
ebin/ggs.app
Normal file
13
ebin/ggs.app
Normal file
|
@ -0,0 +1,13 @@
|
|||
{application, ggs,
|
||||
[{description, "The Generic Game Server"},
|
||||
{vsn, "0.1.0"},
|
||||
{modules, [
|
||||
ggs_app,
|
||||
ggs_sup,
|
||||
ggs_server
|
||||
]},
|
||||
{registered, [ggs_sup]},
|
||||
{applications, [kernel, stdlib]},
|
||||
{mod, {ggs_app, []}}
|
||||
]}.
|
||||
|
Reference in a new issue