Skip to content

Commit 5ddf9a8

Browse files
committed
Setup Fly Deployment CI
1 parent e7c2772 commit 5ddf9a8

File tree

11 files changed

+244
-1
lines changed

11 files changed

+244
-1
lines changed

.dockerignore

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# flyctl launch added from .elixir_ls/.gitignore
2+
.elixir_ls/**/*
3+
4+
# flyctl launch added from .gitignore
5+
# The directory Mix will write compiled artifacts to.
6+
_build
7+
8+
# If you run "mix test --cover", coverage assets end up here.
9+
cover
10+
11+
# The directory Mix downloads your dependencies sources to.
12+
deps
13+
14+
# Where 3rd-party dependencies like ExDoc output generated docs.
15+
doc
16+
17+
# Ignore .fetch files in case you like to edit your project deps locally.
18+
.fetch
19+
20+
# If the VM crashes, it generates a dump, let's ignore it too.
21+
**/erl_crash.dump
22+
23+
# Also ignore archive artifacts (built via "mix archive.build").
24+
**/*.ez
25+
26+
# Ignore package tarball (built via "mix hex.build").
27+
**/elixir_newbie-*.tar
28+
29+
# Ignore assets that are produced by build tools.
30+
priv/static/assets
31+
32+
# Ignore digested assets cache.
33+
priv/static/cache_manifest.json
34+
35+
# In case you use Node.js/npm, you want to ignore these.
36+
**/npm-debug.log
37+
assets/node_modules
38+
39+
fly.toml

.github/workflows/fly.yml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Fly Deploy
2+
on:
3+
push:
4+
branches:
5+
- main
6+
env:
7+
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
8+
jobs:
9+
deploy:
10+
name: Deploy app
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v3
14+
- uses: superfly/flyctl-actions/setup-flyctl@master
15+
- run: flyctl deploy --remote-only

Dockerfile

+95
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# Find eligible builder and runner images on Docker Hub. We use Ubuntu/Debian
2+
# instead of Alpine to avoid DNS resolution issues in production.
3+
#
4+
# https://hub.docker.com/r/hexpm/elixir/tags?page=1&name=ubuntu
5+
# https://hub.docker.com/_/ubuntu?tab=tags
6+
#
7+
# This file is based on these images:
8+
#
9+
# - https://hub.docker.com/r/hexpm/elixir/tags - for the build image
10+
# - https://hub.docker.com/_/debian?tab=tags&page=1&name=bullseye-20221004-slim - for the release image
11+
# - https://pkgs.org/ - resource for finding needed packages
12+
# - Ex: hexpm/elixir:1.14.2-erlang-25.1.2-debian-bullseye-20221004-slim
13+
#
14+
ARG ELIXIR_VERSION=1.14.2
15+
ARG OTP_VERSION=25.1.2
16+
ARG DEBIAN_VERSION=bullseye-20221004-slim
17+
18+
ARG BUILDER_IMAGE="hexpm/elixir:${ELIXIR_VERSION}-erlang-${OTP_VERSION}-debian-${DEBIAN_VERSION}"
19+
ARG RUNNER_IMAGE="debian:${DEBIAN_VERSION}"
20+
21+
FROM ${BUILDER_IMAGE} as builder
22+
23+
# install build dependencies
24+
RUN apt-get update -y && apt-get install -y build-essential git \
25+
&& apt-get clean && rm -f /var/lib/apt/lists/*_*
26+
27+
# prepare build dir
28+
WORKDIR /app
29+
30+
# install hex + rebar
31+
RUN mix local.hex --force && \
32+
mix local.rebar --force
33+
34+
# set build ENV
35+
ENV MIX_ENV="prod"
36+
37+
# install mix dependencies
38+
COPY mix.exs mix.lock ./
39+
RUN mix deps.get --only $MIX_ENV
40+
RUN mkdir config
41+
42+
# copy compile-time config files before we compile dependencies
43+
# to ensure any relevant config change will trigger the dependencies
44+
# to be re-compiled.
45+
COPY config/config.exs config/${MIX_ENV}.exs config/
46+
RUN mix deps.compile
47+
48+
COPY priv priv
49+
50+
COPY lib lib
51+
52+
COPY assets assets
53+
54+
# compile assets
55+
RUN mix assets.deploy
56+
57+
# Compile the release
58+
RUN mix compile
59+
60+
# Changes to config/runtime.exs don't require recompiling the code
61+
COPY config/runtime.exs config/
62+
63+
COPY rel rel
64+
RUN mix release
65+
66+
# start a new build stage so that the final image will only contain
67+
# the compiled release and other runtime necessities
68+
FROM ${RUNNER_IMAGE}
69+
70+
RUN apt-get update -y && apt-get install -y libstdc++6 openssl libncurses5 locales \
71+
&& apt-get clean && rm -f /var/lib/apt/lists/*_*
72+
73+
# Set the locale
74+
RUN sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && locale-gen
75+
76+
ENV LANG en_US.UTF-8
77+
ENV LANGUAGE en_US:en
78+
ENV LC_ALL en_US.UTF-8
79+
80+
WORKDIR "/app"
81+
RUN chown nobody /app
82+
83+
# set runner ENV
84+
ENV MIX_ENV="prod"
85+
86+
# Only copy the final release from the build stage
87+
COPY --from=builder --chown=nobody:root /app/_build/${MIX_ENV}/rel/elixir_newbie ./
88+
89+
USER nobody
90+
91+
CMD ["/app/bin/server"]
92+
93+
# Appended by flyctl
94+
ENV ECTO_IPV6 true
95+
ENV ERL_AFLAGS "-proto_dist inet6_tcp"

fly.toml

+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# fly.toml file generated for elixirnewbie on 2022-12-29T13:13:04-08:00
2+
3+
app = "elixirnewbie"
4+
kill_signal = "SIGTERM"
5+
kill_timeout = 5
6+
processes = []
7+
8+
[deploy]
9+
release_command = "/app/bin/migrate"
10+
11+
[env]
12+
PHX_HOST = "elixirnewbie.fly.dev"
13+
PORT = "8080"
14+
15+
[experimental]
16+
allowed_public_ports = []
17+
auto_rollback = true
18+
19+
[[services]]
20+
http_checks = []
21+
internal_port = 8080
22+
processes = ["app"]
23+
protocol = "tcp"
24+
script_checks = []
25+
[services.concurrency]
26+
hard_limit = 25
27+
soft_limit = 20
28+
type = "connections"
29+
30+
[[services.ports]]
31+
force_https = true
32+
handlers = ["http"]
33+
port = 80
34+
35+
[[services.ports]]
36+
handlers = ["tls", "http"]
37+
port = 443
38+
39+
[[services.tcp_checks]]
40+
grace_period = "1s"
41+
interval = "15s"
42+
restart_limit = 0
43+
timeout = "2s"

lib/elixir_newbie/release.ex

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
defmodule ElixirNewbie.Release do
2+
@moduledoc """
3+
Used for executing DB release tasks when run in production without Mix
4+
installed.
5+
"""
6+
@app :elixir_newbie
7+
8+
def migrate do
9+
load_app()
10+
11+
for repo <- repos() do
12+
{:ok, _, _} = Ecto.Migrator.with_repo(repo, &Ecto.Migrator.run(&1, :up, all: true))
13+
end
14+
end
15+
16+
def rollback(repo, version) do
17+
load_app()
18+
{:ok, _, _} = Ecto.Migrator.with_repo(repo, &Ecto.Migrator.run(&1, :down, to: version))
19+
end
20+
21+
defp repos do
22+
Application.fetch_env!(@app, :ecto_repos)
23+
end
24+
25+
defp load_app do
26+
Application.load(@app)
27+
end
28+
end
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
defmodule ElixirNewbieWeb.HomeLive do
2+
use ElixirNewbieWeb, :live_view
3+
4+
def render(assigns) do
5+
~H"""
6+
Hello World
7+
"""
8+
end
9+
10+
def mount(_params, _session, socket) do
11+
{:ok, socket}
12+
end
13+
end

lib/elixir_newbie_web/router.ex

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ defmodule ElixirNewbieWeb.Router do
1717
scope "/", ElixirNewbieWeb do
1818
pipe_through :browser
1919

20-
get "/", PageController, :home
20+
# get "/", PageController, :home
21+
live "/", HomeLive, :home
2122
end
2223

2324
# Other scopes may use custom stacks.

rel/overlays/bin/migrate

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
cd -P -- "$(dirname -- "$0")"
3+
exec ./elixir_newbie eval ElixirNewbie.Release.migrate

rel/overlays/bin/migrate.bat

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
call "%~dp0\elixir_newbie" eval ElixirNewbie.Release.migrate

rel/overlays/bin/server

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/bin/sh
2+
cd -P -- "$(dirname -- "$0")"
3+
PHX_SERVER=true exec ./elixir_newbie start

rel/overlays/bin/server.bat

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
set PHX_SERVER=true
2+
call "%~dp0\elixir_newbie" start

0 commit comments

Comments
 (0)