first version
- content on index - tailwind setup
This commit is contained in:
36
lib/homepage/application.ex
Normal file
36
lib/homepage/application.ex
Normal file
@ -0,0 +1,36 @@
|
||||
defmodule Homepage.Application do
|
||||
# See https://hexdocs.pm/elixir/Application.html
|
||||
# for more information on OTP Applications
|
||||
@moduledoc false
|
||||
|
||||
use Application
|
||||
|
||||
@impl true
|
||||
def start(_type, _args) do
|
||||
children = [
|
||||
# Start the Ecto repository
|
||||
Homepage.Repo,
|
||||
# Start the Telemetry supervisor
|
||||
HomepageWeb.Telemetry,
|
||||
# Start the PubSub system
|
||||
{Phoenix.PubSub, name: Homepage.PubSub},
|
||||
# Start the Endpoint (http/https)
|
||||
HomepageWeb.Endpoint
|
||||
# Start a worker by calling: Homepage.Worker.start_link(arg)
|
||||
# {Homepage.Worker, arg}
|
||||
]
|
||||
|
||||
# See https://hexdocs.pm/elixir/Supervisor.html
|
||||
# for other strategies and supported options
|
||||
opts = [strategy: :one_for_one, name: Homepage.Supervisor]
|
||||
Supervisor.start_link(children, opts)
|
||||
end
|
||||
|
||||
# Tell Phoenix to update the endpoint configuration
|
||||
# whenever the application is updated.
|
||||
@impl true
|
||||
def config_change(changed, _new, removed) do
|
||||
HomepageWeb.Endpoint.config_change(changed, removed)
|
||||
:ok
|
||||
end
|
||||
end
|
3
lib/homepage/mailer.ex
Normal file
3
lib/homepage/mailer.ex
Normal file
@ -0,0 +1,3 @@
|
||||
defmodule Homepage.Mailer do
|
||||
use Swoosh.Mailer, otp_app: :homepage
|
||||
end
|
5
lib/homepage/repo.ex
Normal file
5
lib/homepage/repo.ex
Normal file
@ -0,0 +1,5 @@
|
||||
defmodule Homepage.Repo do
|
||||
use Ecto.Repo,
|
||||
otp_app: :homepage,
|
||||
adapter: Ecto.Adapters.Postgres
|
||||
end
|
Reference in New Issue
Block a user