Skip to content

Instantly share code, notes, and snippets.

@marinho10
Created March 9, 2018 16:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marinho10/24b98ca8fdac5b9c0811f3060b495b40 to your computer and use it in GitHub Desktop.
Save marinho10/24b98ca8fdac5b9c0811f3060b495b40 to your computer and use it in GitHub Desktop.
Application
defmodule SuperSlimeGame.Application do
use Application
# See https://hexdocs.pm/elixir/Application.html
# for more information on OTP Applications
def start(_type, _args) do
import Supervisor.Spec
# Define workers and child supervisors to be supervised
children = [
# Start the endpoint when the application starts
supervisor(SuperSlimeGameWeb.Endpoint, []),
# Start your own worker by calling: SuperSlimeGame.Worker.start_link(arg1, arg2, arg3)
worker(SuperSlimeGame.GameState, []),
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: SuperSlimeGame.Supervisor]
Supervisor.start_link(children, opts)
end
# Tell Phoenix to update the endpoint configuration
# whenever the application is updated.
def config_change(changed, _new, removed) do
SuperSlimeGameWeb.Endpoint.config_change(changed, removed)
:ok
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment