first version

- content on index
- tailwind setup
This commit is contained in:
2022-04-28 09:58:07 +02:00
parent d65307b3ce
commit 9d8fad95d3
47 changed files with 1771 additions and 0 deletions

View 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
View File

@ -0,0 +1,3 @@
defmodule Homepage.Mailer do
use Swoosh.Mailer, otp_app: :homepage
end

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

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