Initial Phoenix generated project.

This commit is contained in:
codevictory
2021-03-27 14:29:16 +02:00
parent 44e96d9755
commit 299b47ca56
49 changed files with 20471 additions and 9 deletions

View File

@@ -0,0 +1,34 @@
defmodule Runosaari.Application do
# See https://hexdocs.pm/elixir/Application.html
# for more information on OTP Applications
@moduledoc false
use Application
def start(_type, _args) do
children = [
# Start the Ecto repository
Runosaari.Repo,
# Start the Telemetry supervisor
RunosaariWeb.Telemetry,
# Start the PubSub system
{Phoenix.PubSub, name: Runosaari.PubSub},
# Start the Endpoint (http/https)
RunosaariWeb.Endpoint
# Start a worker by calling: Runosaari.Worker.start_link(arg)
# {Runosaari.Worker, arg}
]
# See https://hexdocs.pm/elixir/Supervisor.html
# for other strategies and supported options
opts = [strategy: :one_for_one, name: Runosaari.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
RunosaariWeb.Endpoint.config_change(changed, removed)
:ok
end
end

5
lib/runosaari/repo.ex Normal file
View File

@@ -0,0 +1,5 @@
defmodule Runosaari.Repo do
use Ecto.Repo,
otp_app: :runosaari,
adapter: Ecto.Adapters.Postgres
end