From 1fdaa4392b8057261dfdd12aa5faef5eb21a1194 Mon Sep 17 00:00:00 2001 From: Thiago Esteves Date: Fri, 10 May 2024 17:06:03 -0300 Subject: [PATCH] Initial commit --- .formatter.exs | 5 + .github/workflows/pr-ci.yaml | 123 +++ .github/workflows/release.yaml | 66 ++ .gitignore | 51 ++ .tool-versions | 3 + README.md | 342 ++++++++ assets/css/app.css | 5 + assets/js/app.js | 44 + assets/tailwind.config.js | 75 ++ assets/vendor/topbar.js | 165 ++++ config/config.exs | 65 ++ config/dev.exs | 79 ++ config/prod.exs | 29 + config/runtime.exs | 97 +++ config/test.exs | 24 + devops/terraform/.gitignore | 60 ++ devops/terraform/environments/prod/.envrc | 1 + devops/terraform/environments/prod/.gitignore | 1 + .../environments/prod/main_example.tf_ | 12 + .../modules/standard-account/cloud-config.tpl | 191 +++++ .../terraform/modules/standard-account/ec2.tf | 118 +++ .../modules/standard-account/metrics.tf | 26 + .../terraform/modules/standard-account/s3.tf | 57 ++ .../modules/standard-account/secrets.tf | 62 ++ .../modules/standard-account/variables.tf | 19 + .../terraform/modules/standard-account/vpc.tf | 70 ++ lib/calori.ex | 9 + lib/calori/application.ex | 35 + lib/calori/mailer.ex | 3 + lib/calori_web.ex | 113 +++ lib/calori_web/components/core_components.ex | 759 ++++++++++++++++++ lib/calori_web/components/layouts.ex | 14 + .../components/layouts/app.html.heex | 22 + .../components/layouts/root.html.heex | 17 + lib/calori_web/controllers/error_html.ex | 24 + lib/calori_web/controllers/error_json.ex | 21 + lib/calori_web/controllers/page_controller.ex | 9 + lib/calori_web/controllers/page_html.ex | 10 + .../controllers/page_html/home.html.heex | 222 +++++ lib/calori_web/endpoint.ex | 52 ++ lib/calori_web/gettext.ex | 24 + lib/calori_web/live/about.ex | 22 + lib/calori_web/router.ex | 52 ++ lib/calori_web/telemetry.ex | 69 ++ lib/config_provider/aws_secrets_manager.ex | 99 +++ mix.exs | 100 +++ mix.lock | 54 ++ priv/.gitignore | 1 + priv/gettext/en/LC_MESSAGES/errors.po | 11 + priv/gettext/errors.pot | 10 + priv/static/favicon.ico | Bin 0 -> 152 bytes priv/static/images/logo.svg | 6 + priv/static/robots.txt | 5 + rel/.gitignore | 1 + rel/env.sh.eex | 49 ++ rel/remote.vm.args.eex | 8 + rel/vm.args.eex | 16 + .../controllers/error_html_test.exs | 14 + .../controllers/error_json_test.exs | 12 + .../controllers/page_controller_test.exs | 8 + test/support/conn_case.ex | 37 + test/test_helper.exs | 1 + 62 files changed, 3699 insertions(+) create mode 100644 .formatter.exs create mode 100644 .github/workflows/pr-ci.yaml create mode 100644 .github/workflows/release.yaml create mode 100644 .gitignore create mode 100644 .tool-versions create mode 100644 README.md create mode 100644 assets/css/app.css create mode 100644 assets/js/app.js create mode 100644 assets/tailwind.config.js create mode 100644 assets/vendor/topbar.js create mode 100644 config/config.exs create mode 100644 config/dev.exs create mode 100644 config/prod.exs create mode 100644 config/runtime.exs create mode 100644 config/test.exs create mode 100644 devops/terraform/.gitignore create mode 100644 devops/terraform/environments/prod/.envrc create mode 100644 devops/terraform/environments/prod/.gitignore create mode 100644 devops/terraform/environments/prod/main_example.tf_ create mode 100644 devops/terraform/modules/standard-account/cloud-config.tpl create mode 100644 devops/terraform/modules/standard-account/ec2.tf create mode 100644 devops/terraform/modules/standard-account/metrics.tf create mode 100644 devops/terraform/modules/standard-account/s3.tf create mode 100644 devops/terraform/modules/standard-account/secrets.tf create mode 100644 devops/terraform/modules/standard-account/variables.tf create mode 100644 devops/terraform/modules/standard-account/vpc.tf create mode 100644 lib/calori.ex create mode 100644 lib/calori/application.ex create mode 100644 lib/calori/mailer.ex create mode 100644 lib/calori_web.ex create mode 100644 lib/calori_web/components/core_components.ex create mode 100644 lib/calori_web/components/layouts.ex create mode 100644 lib/calori_web/components/layouts/app.html.heex create mode 100644 lib/calori_web/components/layouts/root.html.heex create mode 100644 lib/calori_web/controllers/error_html.ex create mode 100644 lib/calori_web/controllers/error_json.ex create mode 100644 lib/calori_web/controllers/page_controller.ex create mode 100644 lib/calori_web/controllers/page_html.ex create mode 100644 lib/calori_web/controllers/page_html/home.html.heex create mode 100644 lib/calori_web/endpoint.ex create mode 100644 lib/calori_web/gettext.ex create mode 100644 lib/calori_web/live/about.ex create mode 100644 lib/calori_web/router.ex create mode 100644 lib/calori_web/telemetry.ex create mode 100644 lib/config_provider/aws_secrets_manager.ex create mode 100644 mix.exs create mode 100644 mix.lock create mode 100644 priv/.gitignore create mode 100644 priv/gettext/en/LC_MESSAGES/errors.po create mode 100644 priv/gettext/errors.pot create mode 100644 priv/static/favicon.ico create mode 100644 priv/static/images/logo.svg create mode 100644 priv/static/robots.txt create mode 100644 rel/.gitignore create mode 100644 rel/env.sh.eex create mode 100644 rel/remote.vm.args.eex create mode 100644 rel/vm.args.eex create mode 100644 test/calori_web/controllers/error_html_test.exs create mode 100644 test/calori_web/controllers/error_json_test.exs create mode 100644 test/calori_web/controllers/page_controller_test.exs create mode 100644 test/support/conn_case.ex create mode 100644 test/test_helper.exs diff --git a/.formatter.exs b/.formatter.exs new file mode 100644 index 0000000..e945e12 --- /dev/null +++ b/.formatter.exs @@ -0,0 +1,5 @@ +[ + import_deps: [:phoenix], + plugins: [Phoenix.LiveView.HTMLFormatter], + inputs: ["*.{heex,ex,exs}", "{config,lib,test}/**/*.{heex,ex,exs}"] +] diff --git a/.github/workflows/pr-ci.yaml b/.github/workflows/pr-ci.yaml new file mode 100644 index 0000000..2ef1130 --- /dev/null +++ b/.github/workflows/pr-ci.yaml @@ -0,0 +1,123 @@ +name: Calori Website CI + +on: + pull_request: + branches: [main] + +env: + MIX_ENV: test + +jobs: + setup: + name: Setup + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v4 + + - name: Setup BEAM + uses: erlef/setup-beam@v1 + with: + version-file: .tool-versions + version-type: strict + + - name: Cache + uses: actions/cache@v3 + with: + path: | + _build + deps + key: | + calori-${{ hashFiles('.tool-versions') }}-${{ hashFiles('mix.lock') }}-2024-05-10 + restore-keys: | + calori- + + - name: Install Elixir dependencies + run: mix do deps.get, compile --warnings-as-errors + + test: + name: Test + needs: setup + runs-on: ubuntu-22.04 + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup BEAM + uses: erlef/setup-beam@v1 + with: + version-file: .tool-versions + version-type: strict + + - name: Cache + uses: actions/cache@v3 + with: + path: | + _build + deps + key: | + calori-${{ hashFiles('.tool-versions') }}-${{ hashFiles('mix.lock') }}-2024-05-10 + restore-keys: | + calori- + + - name: Run tests + run: mix test + + analysis: + name: Static Analysis + needs: setup + runs-on: ubuntu-22.04 + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Setup BEAM + uses: erlef/setup-beam@v1 + with: + version-file: .tool-versions + version-type: strict + + - name: Cache + uses: actions/cache@v3 + with: + path: | + _build + deps + apps/site_web/assets/node_modules + key: | + calori-${{ hashFiles('.tool-versions') }}-${{ hashFiles('mix.lock') }}-${{ hashFiles('apps/site_web/assets/yarn.lock') }}-2024-05-10 + restore-keys: | + calori- + + - name: Install Elixir dependencies + run: mix do deps.get, compile --warnings-as-errors + + - name: Credo + run: mix credo --strict + + - name: Mix Audit + run: mix deps.audit + + - name: Mix Sobelow + run: mix sobelow --exit --threshold medium --skip -i Config.HTTPS + + - name: Formatted + run: mix format --check-formatted + + - name: Restore PLT cache + uses: actions/cache@v3 + id: plt_cache + with: + key: plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('**/*.ex') }} + restore-keys: | + plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}-${{ hashFiles('**/*.ex') }} + plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}-${{ hashFiles('**/mix.lock') }}- + plt-${{ steps.beam.outputs.otp-version }}-${{ steps.beam.outputs.elixir-version }}- + plt-${{ steps.beam.outputs.otp-version }}- + path: priv/plts + + - name: Create PLTs + if: steps.plt_cache.outputs.cache-hit != 'true' || github.run_attempt != '1' + run: mix dialyzer --plt + + - name: Run Dialyzer + run: mix dialyzer --format github diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml new file mode 100644 index 0000000..3b8f668 --- /dev/null +++ b/.github/workflows/release.yaml @@ -0,0 +1,66 @@ +name: Publish a release file/version to AWS + +on: + push: + branches: + - main + +env: + MIX_ENV: prod + +jobs: + build: + name: Building Calori release and publishing it at AWS + runs-on: ubuntu-20.04 + permissions: + contents: write + steps: + - uses: actions/checkout@v4 + - name: Setup BEAM + uses: erlef/setup-beam@v1 + with: + version-file: .tool-versions + version-type: strict + + - name: Capture GITHUB_SHORT_SHA + run: | + GITHUB_SHORT_SHA=$(git rev-parse --short ${{ github.sha }}) + echo "GITHUB_SHORT_SHA=${GITHUB_SHORT_SHA}" >> $GITHUB_ENV + + - name: Capture and update project mix version + run: | + MIX_VERSION=`grep "version:" mix.exs | awk -F'"' '{print $2}'` + CALORI_VERSION=${MIX_VERSION}-${GITHUB_SHORT_SHA} + echo "CALORI_VERSION=${CALORI_VERSION}" >> $GITHUB_ENV + sed -i "s/.*version:.*/ version: \"${CALORI_VERSION}\",/" mix.exs + + - name: Create Release file version + run: | + echo "{\"version\":\"${CALORI_VERSION}\",\"hash\":\"${GITHUB_SHA}\"}" | jq > current.json + + - name: Install Elixir dependencies + run: mix do deps.get, compile + + - name: Assets Deploy + run: mix assets.deploy + + - name: Generate a Release + run: mix release + + - name: Copy a release file to the s3 distribution folder + uses: prewk/s3-cp-action@v2 + with: + aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws_region: "sa-east-1" + source: '_build/prod/*.tar.gz' + dest: 's3://${{ secrets.S3_DIST_URL }}/dist/calori/calori-${CALORI_VERSION}.tar.gz' + + - name: Copy a version file to the s3 version folder + uses: prewk/s3-cp-action@v2 + with: + aws_access_key_id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws_region: "sa-east-1" + source: 'current.json' + dest: 's3://${{ secrets.S3_DIST_URL }}/versions/calori/prod/current.json' diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e7d007b --- /dev/null +++ b/.gitignore @@ -0,0 +1,51 @@ +# The directory Mix will write compiled artifacts to. +/_build/ + +# If you run "mix test --cover", coverage assets end up here. +/cover/ + +# The directory Mix downloads your dependencies sources to. +/deps/ + +# Where 3rd-party dependencies like ExDoc output generated docs. +/doc/ + +# Ignore .fetch files in case you like to edit your project deps locally. +/.fetch + +# If the VM crashes, it generates a dump, let's ignore it too. +erl_crash.dump + +# Also ignore archive artifacts (built via "mix archive.build"). +*.ez + +# Temporary files, for example, from tests. +/tmp/ + +# Ignore package tarball (built via "mix hex.build"). +calori-*.tar + +# Ignore assets that are produced by build tools. +/priv/static/assets/ + +# Ignore digested assets cache. +/priv/static/cache_manifest.json + +# In case you use Node.js/npm, you want to ignore these. +npm-debug.log +/assets/node_modules/ + +# Certificates and public/private keys +*.crt +*.key +*.p8 +*.pub + +# Ignore .env files +*.env + +*.DS_Store + +config/*.secret.exs + +.container \ No newline at end of file diff --git a/.tool-versions b/.tool-versions new file mode 100644 index 0000000..12c5fe5 --- /dev/null +++ b/.tool-versions @@ -0,0 +1,3 @@ +erlang 26.1.2 +elixir 1.16.0-otp-26 +terraform 1.5.6 diff --git a/README.md b/README.md new file mode 100644 index 0000000..8d8da26 --- /dev/null +++ b/README.md @@ -0,0 +1,342 @@ +# Calori + +To start your Phoenix server: + + * Run `mix setup` to install and setup dependencies + * Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server` + +Now you can visit [`localhost:4000`](http://localhost:4000) from your browser. + +Ready to run in production? Have a look in the next section + +# AWS Deployment (with terraform) + +The environment provisioning involves Terraform templates located at `devops/terraform/environments/prod` and a few manual steps. + +## Setup + +To begin, ensure the following steps are in place: + +### 1. SSH Key Pair + +Create an SSH key pair named, e. g. `calori-web-ec2` by visiting the [AWS Key Pair page](https://sa-east-1.console.aws.amazon.com/ec2/home?region=sa-east-1#KeyPairs:). Save the private key in your local SSH folder (`~/.ssh`). The name `calori-web-ec2` will be used by this file `devops/terraform/modules/standard-account/variables.tf` within terraform templates. + +### 2. Environment Secrets + +Ensure you have access to the following secrets for storage in AWS Secrets Manager: + + - CALORI_SECRET_KEY_BASE + - ERLANG_COOKIE + +### 3. CALORI_PHX_HOST Configuration + +In the file `devops/terraform/environments/prod/main.tf`, verify and set the *__server_dns__* variable according to the specific environment, such as `calori.com.br`. This variable will be used in all terraform templates to set-up correctly the hostname. + +### 4. Provisioning the Environment + +Check you have the correct credentials to create/update resources in aws: +```bash +cat ~/.aws/credentials +[default] +aws_access_key_id=access_key_id +aws_secret_access_key=secret_access_key +``` + +Once the key is configured, proceed with provisioning the environment. Navigate to the `devops/terraform/environments/prod` folder and execute the following commands: + +```bash +terraform plan # Check if the templates are configured correctly +terraform apply # Apply the configurations to create the environment +``` + +Wait for the environment to be created. Afterward, update the variables in the *__calori-prod-secrets__* secret in the [AWS Secrets Manager](https://sa-east-1.console.aws.amazon.com/secretsmanager/listsecrets?region=sa-east-1) with the corresponding values. + +```bash +# Update the secrets +CALORI_SECRET_KEY_BASE=xxxxxxxxxx +ERLANG_COOKIE=xxxxxxxxxx +``` + +Additionally, create the TLS certificates for the OTP distribution using the [Deployex app](https://github.com/thiagoesteves/deployex?tab=readme-ov-file#enhancing-otp-distribution-security-with-mtls) + +```bash +cd deployex +make tls-distribution-certs +``` + +*__PS__*: you will also need to add them as plain text as explained [here](https://docs.aws.amazon.com/emr/latest/ManagementGuide/emr-ranger-tls-certificates.html) + +Add the following certificates: + - *__calori-stage-otp-tls-ca__* + - *__calori-stage-otp-tls-key__* + - *__calori-stage-otp-tls-crt__* + +### 5. EC2 Provisioning (Manual Steps) + +The deployex is not installed by default, the user needs to access the EC2 and install it via script. (This step can also be used to update the deployex) + +*__PS__*: make sure you have the pair calori-web-ec2.pem saved in `~/.ssh/` + +```bash +ssh -i "calori-web-ec2.pem" ubuntu@ec2-52-67-178-12.sa-east-1.compute.amazonaws.com +ubuntu@ip-10-0-1-56:~$ +``` + +After getting access to EC2, you need to grant root permissions: + +```bash +ubuntu@ip-10-0-1-56:~$ sudo su +root@ip-10-0-1-56:/home/ubuntu$ +``` + +Run the script to install the certificates: +```bash +./install-otp-certificates.sh + +# Installing Certificates env: stage at /usr/local/share/ca-certificates # +Retrieving and saving ...... +[OK] +``` + +you can check if the certificates were installed correctly: + +```bash +ls /usr/local/share/ca-certificates +ca.crt calori.crt calori.key deployex.crt deployex.key +``` + +Run the script to install (or update) deployex: + +```bash +root@ip-10-0-1-56:/home/ubuntu$ ./install-upgrade.sh + +# Updating Deployex # +# Download the latest deployex version # +--2024-05-14 00:54:42-- https://github.com/thiagoesteves/deployex/releases/download/0.1.0/deployex-ubuntu-20.04.tar.gz +Resolving github.com (github.com)... 20.201.28.151 +Connecting to github.com (github.com)|20.201.28.151|:443... connected. +HTTP request sent, awaiting response... 302 Found +... +Connecting to objects.githubusercontent.com (objects.githubusercontent.com)|185.199.109.133|:443... connected. +HTTP request sent, awaiting response... 200 OK +Length: 27564543 (26M) [application/octet-stream] +Saving to: ‘deployex-ubuntu-20.04.tar.gz’ + +deployex-ubuntu-20.04.tar.gz 100%[=============================================================================>] 26.29M 14.1MB/s in 1.9s + +2024-05-14 00:54:44 (14.1 MB/s) - ‘deployex-ubuntu-20.04.tar.gz’ saved [27564543/27564543] + +# Clean and create a new directory # +# Start systemd # +Created symlink /etc/systemd/system/multi-user.target.wants/deployex.service → /etc/systemd/system/deployex.service. +``` + +If the deployex needs to be updated, a new version can be passed as argument, e. g. : +```bash +root@ip-10-0-1-56:/home/ubuntu$ ./install-upgrade.sh 1.0.0 +``` + +If deployex is running and still there is no version of the monitored app available, you should see this message in the logs: +```bash +root@ip-10-0-1-56:/home/ubuntu# tail -f /var/log/deployex.log +00:54:47.786 [info] module=Deployex.Monitor function=start_service/2 pid=<0.1028.0> No version set, not able to start_service +``` + +### 6. Calori (Monitored App) deployment + +Once deployex is running, the monitored app __MUST__ then be deployed, creating the release package and the json file in the S3. For this project, check the github actions that are deploying the respective app. + +In the [github actions](.github/workflows/release.yaml) files, you can check that the job is updating the `mix.exs` version prior compiling the package to append the short-sha in the version. The final `current.json` file should be similar to: +```bash +{ + "version": "0.1.0-9cad9cd", + "hash": "9cad9cd3581c69fdd02ff60765e1c7dd4599d84a" +} +``` + +Tracking the `mix.exs` version is essential to allow hot-upgrades. + +### 7. HTTPS certificates + +*__ATTENTION: For this step to work, be sure that the DNS is pointing to the EC2 instance.__* + +For HTTPS, the project can set Free certificates from [Let's encrypt](https://letsencrypt.org/getting-started/). In this deployment, we are going to use the [cert bot for ubuntu](https://certbot.eff.org/instructions?ws=nginx&os=ubuntufocal): + +```bash +sudo apt update +sudo apt install snapd +sudo snap install --classic certbot +sudo ln -s /snap/bin/certbot /usr/bin/certbot +sudo certbot --nginx +``` + +The comands above will modify nginx file for the correct routing. Once it is all set, you need to check if the [runtime.exs](apps/calori/config/runtime.exs) is pointing to the correct SCHEME/HOST/PORT, e. g.: + +```elixir + url: [host: "example.com", port: 443, scheme: "https"], +``` + +### 8. Hot Upgrade + +TBD + +#### Considerations when NOT use hotupgrades + +Avoid the execute a hotupgrade in the following situations: + - When running migrations + - When a new initialization is required + - When files/modules were deleted/added + - When a new configuration flags in vm.args are required + - When there is a change in the config providers files, since they are not supported during a hotupgrade yet + +## Throubleshooting + +#### 1. IEX shell Access to Deployex App + +Connecting the iex shell: + +```bash +ubuntu@ip-10-0-1-56:~$ sudo su +root@ip-10-0-1-56:/home/ubuntu$ /opt/deployex/bin/deployex remote +Erlang/OTP 26 [erts-14.2.1] [source] [64-bit] [smp:1:1] [ds:1:1:10] [async-threads:1] [jit:ns] + +Interactive Elixir (1.16.0) - press Ctrl+C to exit (type h() ENTER for help) +iex(deployex@ip-10-0-1-56)1> +``` + +##### 2. IEX shell Access to Calori App + +Connecting the iex shell: + +```bash +root@ip-10-0-1-56:/home/ubuntu$ sudo -su deployex +deployex@ip-10-0-1-56:$ /var/lib/deployex/service/calori/current/bin/calori remote +Erlang/OTP 26 [erts-14.2.1] [source] [64-bit] [smp:1:1] [ds:1:1:10] [async-threads:1] [jit:ns] + +Interactive Elixir (1.16.0) - press Ctrl+C to exit (type h() ENTER for help) +iex(calori@ip-10-0-1-56)1> +``` + +##### 3. Logs + +The logs for deployex can be found at `/var/log/deployex.log`. + +```bash +root@ip-10-0-1-56:/home/ubuntu$ tail -f /var/log/deployex.log +13:44:25.292 [notice] pid=<0.900.0> SIGTERM received - shutting down + +13:46:20.553 [info] module=Deployex.Monitor function=ensure_running/2 pid=<0.1017.0> Ensure requested for version: 0.1.0 +13:46:20.554 [info] module=Deployex.Monitor function=ensure_running/2 pid=<0.1017.0> - Starting /var/lib/deployex/service/calori/current/bin/calori... +13:46:20.555 [info] module=Deployex.Monitor function=ensure_running/2 pid=<0.1017.0> - Running, monitoring pid = #PID<0.1018.0>, OS process id = 1418. +13:46:57.675 [notice] pid=<0.900.0> SIGTERM received - shutting down + +13:48:11.686 [info] module=Deployex.Monitor function=ensure_running/2 pid=<0.1017.0> Ensure requested for version: 0.1.0 +13:48:11.686 [info] module=Deployex.Monitor function=ensure_running/2 pid=<0.1017.0> - Starting /var/lib/deployex/service/calori/current/bin/calori... +13:48:11.687 [info] module=Deployex.Monitor function=ensure_running/2 pid=<0.1017.0> - Running, monitoring pid = #PID<0.1018.0>, OS process id = 1569. +``` + +The logs for calori can be found at `/var/log/calori-stdout.log` or `/var/log/calori-stderr.log`. + +```bash +root@ip-10-0-1-56:/home/ubuntu$ tail -f /var/log/calori-stdout.log +14:09:36.156 [info] CONNECTED TO Phoenix.LiveView.Socket in 25µs + Transport: :websocket + Serializer: Phoenix.Socket.V2.JSONSerializer + Parameters: %{"_csrf_token" => "V18FIDZHICgFM2BmEAk7MS0CLh0qPFQrflVBL-kp1R59hGURu2FuaqfJ", "_live_referer" => "undefined", "_mounts" => "0", "_track_static" => %{"0" => "http://ec2-18-223-210-216.us-east-2.compute.amazonaws.com/assets/app-f519839f3e224b77ecdaa1fd3818e91e.css?vsn=d", "1" => "http://ec2-18-223-210-216.us-east-2.compute.amazonaws.com/assets/app-54c572e977c8f20ea325db08d4d9f5f1.js?vsn=d"}, "timezone" => "America/Sao_Paulo", "vsn" => "2.0.0"} +14:09:36.495 [info] GET /app/user/calendar +14:09:36.511 [info] Sent 200 in 15ms +14:09:36.871 [info] CONNECTED TO Phoenix.LiveView.Socket in 25µs + Transport: :websocket + Serializer: Phoenix.Socket.V2.JSONSerializer + Parameters: %{"_csrf_token" => "YgoZUCNZBCpAJxkAHiYFC21BHistBH03S9J2Y3OrtFL_fhkh5qvCfIOV", "_live_referer" => "undefined", "_mounts" => "0", "_track_static" => %{"0" => "http://ec2-18-223-210-216.us-east-2.compute.amazonaws.com/assets/app-f519839f3e224b77ecdaa1fd3818e91e.css?vsn=d", "1" => "http://ec2-18-223-210-216.us-east-2.compute.amazonaws.com/assets/app-54c572e977c8f20ea325db08d4d9f5f1.js?vsn=d"}, "timezone" => "America/Sao_Paulo", "vsn" => "2.0.0"} +``` + +##### 4. Updating CALORI_PHX_HOST + +In case you need to update the *__CALORI_PHX_HOST__*, there are 2 files that need to be updated: `/etc/systemd/system/deployex.service` and `/etc/nginx/sites-available/default` (you need to be `root`` user to update them). + +```bash +ubuntu@ip-10-0-1-56:~$ sudo su +root@ip-10-0-1-56:/home/ubuntu$ vi /etc/systemd/system/deployex.service +... +Environment=CALORI_PHX_HOST={CHANGE-ME} +... + +root@ip-10-0-1-56:/home/ubuntu$ vi /etc/nginx/sites-available/default +... +server { + server_name {CHANGE-ME}; +... +server { + if ($host = calori.com.br) { + return 301 https://$host$request_uri; + } # managed by Certbot + + + server_name {CHANGE-ME}; +``` + +you also need to reload the deployex service and restart it (nginx and deployex), execute the commands: + +```bash +systemctl stop deployex.service +systemctl daemon-reload +systemctl enable --now deployex.service +``` + +You will have to re-create the certificates with certbot (if you are using Let's encrypt): +```bash +certbot --nginx +``` + +##### 5. Restart Calori app + +For restarting the Calori app, you just need to stop/start the deployex + +```bash +sudo su +systemctl stop deployex.service +systemctl start deployex.service +``` + +##### 6. Force deployex to reload the calori current version + +In order to force Deployex to download and redeploy calori with the same version, you need to delete the current one: + +```bash +sudo su +systemctl stop deployex.service +rm /var/lib/deployex/current.json +rm -rf /var/lib/deployex/service/calori/current/ +systemctl start deployex.service +``` + +##### 7. Checking sys.config before and after a hotupgrade + +In order to check the Calori sys.config data, you can access the remote iex from deployex: + +*__ATTENTION: In order to have the OTP distribution available make sure the cookie and the certificates are correctly set for both apps__* + +```bash +deployex@ip-10-0-1-56:/var/lib/deployex/service/calori$ /var/lib/deployex/service/calori/current/bin/calori remote +Erlang/OTP 26 [erts-14.2.1] [source] [64-bit] [smp:1:1] [ds:1:1:10] [async-threads:1] [jit:ns] + +Interactive Elixir (1.16.0) - press Ctrl+C to exit (type h() ENTER for help) +iex(calori@ip-10-0-1-56)1> +``` +and then connect both to the distribution + +```Elixir +{:ok, hostname} = :inet.gethostname() +node = :"calori@#{hostname}" +Node.connect(node) +``` + +After you can then run some rpc commands before and after the hot upgrade +```Elixir +iex(calori@ip-10-0-1-11)6> :rpc.call(node, Application, :get_all_env, [:calori], 3_000) +[ + ... + {:dns_cluster_query, nil}, + ... +``` diff --git a/assets/css/app.css b/assets/css/app.css new file mode 100644 index 0000000..378c8f9 --- /dev/null +++ b/assets/css/app.css @@ -0,0 +1,5 @@ +@import "tailwindcss/base"; +@import "tailwindcss/components"; +@import "tailwindcss/utilities"; + +/* This file is for your main application CSS */ diff --git a/assets/js/app.js b/assets/js/app.js new file mode 100644 index 0000000..d5e278a --- /dev/null +++ b/assets/js/app.js @@ -0,0 +1,44 @@ +// If you want to use Phoenix channels, run `mix help phx.gen.channel` +// to get started and then uncomment the line below. +// import "./user_socket.js" + +// You can include dependencies in two ways. +// +// The simplest option is to put them in assets/vendor and +// import them using relative paths: +// +// import "../vendor/some-package.js" +// +// Alternatively, you can `npm install some-package --prefix assets` and import +// them using a path starting with the package name: +// +// import "some-package" +// + +// Include phoenix_html to handle method=PUT/DELETE in forms and buttons. +import "phoenix_html" +// Establish Phoenix Socket and LiveView configuration. +import {Socket} from "phoenix" +import {LiveSocket} from "phoenix_live_view" +import topbar from "../vendor/topbar" + +let csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute("content") +let liveSocket = new LiveSocket("/live", Socket, { + longPollFallbackMs: 2500, + params: {_csrf_token: csrfToken} +}) + +// Show progress bar on live navigation and form submits +topbar.config({barColors: {0: "#29d"}, shadowColor: "rgba(0, 0, 0, .3)"}) +window.addEventListener("phx:page-loading-start", _info => topbar.show(300)) +window.addEventListener("phx:page-loading-stop", _info => topbar.hide()) + +// connect if there are any LiveViews on the page +liveSocket.connect() + +// expose liveSocket on window for web console debug logs and latency simulation: +// >> liveSocket.enableDebug() +// >> liveSocket.enableLatencySim(1000) // enabled for duration of browser session +// >> liveSocket.disableLatencySim() +window.liveSocket = liveSocket + diff --git a/assets/tailwind.config.js b/assets/tailwind.config.js new file mode 100644 index 0000000..6945570 --- /dev/null +++ b/assets/tailwind.config.js @@ -0,0 +1,75 @@ +// See the Tailwind configuration guide for advanced usage +// https://tailwindcss.com/docs/configuration + +const plugin = require("tailwindcss/plugin") +const fs = require("fs") +const path = require("path") + +module.exports = { + content: [ + "./js/**/*.js", + "../lib/calori_web.ex", + "../lib/calori_web/**/*.*ex" + ], + theme: { + extend: { + colors: { + brand: "#FD4F00", + } + }, + }, + plugins: [ + require("@tailwindcss/forms"), + // Allows prefixing tailwind classes with LiveView classes to add rules + // only when LiveView classes are applied, for example: + // + //
+ // + plugin(({addVariant}) => addVariant("phx-no-feedback", [".phx-no-feedback&", ".phx-no-feedback &"])), + plugin(({addVariant}) => addVariant("phx-click-loading", [".phx-click-loading&", ".phx-click-loading &"])), + plugin(({addVariant}) => addVariant("phx-submit-loading", [".phx-submit-loading&", ".phx-submit-loading &"])), + plugin(({addVariant}) => addVariant("phx-change-loading", [".phx-change-loading&", ".phx-change-loading &"])), + + // Embeds Heroicons (https://heroicons.com) into your app.css bundle + // See your `CoreComponents.icon/1` for more information. + // + plugin(function({matchComponents, theme}) { + let iconsDir = path.join(__dirname, "../deps/heroicons/optimized") + let values = {} + let icons = [ + ["", "/24/outline"], + ["-solid", "/24/solid"], + ["-mini", "/20/solid"], + ["-micro", "/16/solid"] + ] + icons.forEach(([suffix, dir]) => { + fs.readdirSync(path.join(iconsDir, dir)).forEach(file => { + let name = path.basename(file, ".svg") + suffix + values[name] = {name, fullPath: path.join(iconsDir, dir, file)} + }) + }) + matchComponents({ + "hero": ({name, fullPath}) => { + let content = fs.readFileSync(fullPath).toString().replace(/\r?\n|\r/g, "") + let size = theme("spacing.6") + if (name.endsWith("-mini")) { + size = theme("spacing.5") + } else if (name.endsWith("-micro")) { + size = theme("spacing.4") + } + return { + [`--hero-${name}`]: `url('data:image/svg+xml;utf8,${content}')`, + "-webkit-mask": `var(--hero-${name})`, + "mask": `var(--hero-${name})`, + "mask-repeat": "no-repeat", + "background-color": "currentColor", + "vertical-align": "middle", + "display": "inline-block", + "width": size, + "height": size + } + } + }, {values}) + }) + ] +} diff --git a/assets/vendor/topbar.js b/assets/vendor/topbar.js new file mode 100644 index 0000000..4195727 --- /dev/null +++ b/assets/vendor/topbar.js @@ -0,0 +1,165 @@ +/** + * @license MIT + * topbar 2.0.0, 2023-02-04 + * https://buunguyen.github.io/topbar + * Copyright (c) 2021 Buu Nguyen + */ +(function (window, document) { + "use strict"; + + // https://gist.github.com/paulirish/1579671 + (function () { + var lastTime = 0; + var vendors = ["ms", "moz", "webkit", "o"]; + for (var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) { + window.requestAnimationFrame = + window[vendors[x] + "RequestAnimationFrame"]; + window.cancelAnimationFrame = + window[vendors[x] + "CancelAnimationFrame"] || + window[vendors[x] + "CancelRequestAnimationFrame"]; + } + if (!window.requestAnimationFrame) + window.requestAnimationFrame = function (callback, element) { + var currTime = new Date().getTime(); + var timeToCall = Math.max(0, 16 - (currTime - lastTime)); + var id = window.setTimeout(function () { + callback(currTime + timeToCall); + }, timeToCall); + lastTime = currTime + timeToCall; + return id; + }; + if (!window.cancelAnimationFrame) + window.cancelAnimationFrame = function (id) { + clearTimeout(id); + }; + })(); + + var canvas, + currentProgress, + showing, + progressTimerId = null, + fadeTimerId = null, + delayTimerId = null, + addEvent = function (elem, type, handler) { + if (elem.addEventListener) elem.addEventListener(type, handler, false); + else if (elem.attachEvent) elem.attachEvent("on" + type, handler); + else elem["on" + type] = handler; + }, + options = { + autoRun: true, + barThickness: 3, + barColors: { + 0: "rgba(26, 188, 156, .9)", + ".25": "rgba(52, 152, 219, .9)", + ".50": "rgba(241, 196, 15, .9)", + ".75": "rgba(230, 126, 34, .9)", + "1.0": "rgba(211, 84, 0, .9)", + }, + shadowBlur: 10, + shadowColor: "rgba(0, 0, 0, .6)", + className: null, + }, + repaint = function () { + canvas.width = window.innerWidth; + canvas.height = options.barThickness * 5; // need space for shadow + + var ctx = canvas.getContext("2d"); + ctx.shadowBlur = options.shadowBlur; + ctx.shadowColor = options.shadowColor; + + var lineGradient = ctx.createLinearGradient(0, 0, canvas.width, 0); + for (var stop in options.barColors) + lineGradient.addColorStop(stop, options.barColors[stop]); + ctx.lineWidth = options.barThickness; + ctx.beginPath(); + ctx.moveTo(0, options.barThickness / 2); + ctx.lineTo( + Math.ceil(currentProgress * canvas.width), + options.barThickness / 2 + ); + ctx.strokeStyle = lineGradient; + ctx.stroke(); + }, + createCanvas = function () { + canvas = document.createElement("canvas"); + var style = canvas.style; + style.position = "fixed"; + style.top = style.left = style.right = style.margin = style.padding = 0; + style.zIndex = 100001; + style.display = "none"; + if (options.className) canvas.classList.add(options.className); + document.body.appendChild(canvas); + addEvent(window, "resize", repaint); + }, + topbar = { + config: function (opts) { + for (var key in opts) + if (options.hasOwnProperty(key)) options[key] = opts[key]; + }, + show: function (delay) { + if (showing) return; + if (delay) { + if (delayTimerId) return; + delayTimerId = setTimeout(() => topbar.show(), delay); + } else { + showing = true; + if (fadeTimerId !== null) window.cancelAnimationFrame(fadeTimerId); + if (!canvas) createCanvas(); + canvas.style.opacity = 1; + canvas.style.display = "block"; + topbar.progress(0); + if (options.autoRun) { + (function loop() { + progressTimerId = window.requestAnimationFrame(loop); + topbar.progress( + "+" + 0.05 * Math.pow(1 - Math.sqrt(currentProgress), 2) + ); + })(); + } + } + }, + progress: function (to) { + if (typeof to === "undefined") return currentProgress; + if (typeof to === "string") { + to = + (to.indexOf("+") >= 0 || to.indexOf("-") >= 0 + ? currentProgress + : 0) + parseFloat(to); + } + currentProgress = to > 1 ? 1 : to; + repaint(); + return currentProgress; + }, + hide: function () { + clearTimeout(delayTimerId); + delayTimerId = null; + if (!showing) return; + showing = false; + if (progressTimerId != null) { + window.cancelAnimationFrame(progressTimerId); + progressTimerId = null; + } + (function loop() { + if (topbar.progress("+.1") >= 1) { + canvas.style.opacity -= 0.05; + if (canvas.style.opacity <= 0.05) { + canvas.style.display = "none"; + fadeTimerId = null; + return; + } + } + fadeTimerId = window.requestAnimationFrame(loop); + })(); + }, + }; + + if (typeof module === "object" && typeof module.exports === "object") { + module.exports = topbar; + } else if (typeof define === "function" && define.amd) { + define(function () { + return topbar; + }); + } else { + this.topbar = topbar; + } +}.call(this, window, document)); diff --git a/config/config.exs b/config/config.exs new file mode 100644 index 0000000..f09ea6f --- /dev/null +++ b/config/config.exs @@ -0,0 +1,65 @@ +# This file is responsible for configuring your application +# and its dependencies with the aid of the Config module. +# +# This configuration file is loaded before any dependency and +# is restricted to this project. + +# General application configuration +import Config + +config :calori, + generators: [timestamp_type: :utc_datetime] + +# Configures the endpoint +config :calori, CaloriWeb.Endpoint, + url: [host: "localhost"], + adapter: Bandit.PhoenixAdapter, + render_errors: [ + formats: [html: CaloriWeb.ErrorHTML, json: CaloriWeb.ErrorJSON], + layout: false + ], + pubsub_server: Calori.PubSub, + live_view: [signing_salt: "6tGVCesx"] + +# Configures the mailer +# +# By default it uses the "Local" adapter which stores the emails +# locally. You can see the emails in your browser, at "/dev/mailbox". +# +# For production it's recommended to configure a different adapter +# at the `config/runtime.exs`. +config :calori, Calori.Mailer, adapter: Swoosh.Adapters.Local + +# Configure esbuild (the version is required) +config :esbuild, + version: "0.17.11", + calori: [ + args: + ~w(js/app.js --bundle --target=es2017 --outdir=../priv/static/assets --external:/fonts/* --external:/images/*), + cd: Path.expand("../assets", __DIR__), + env: %{"NODE_PATH" => Path.expand("../deps", __DIR__)} + ] + +# Configure tailwind (the version is required) +config :tailwind, + version: "3.4.0", + calori: [ + args: ~w( + --config=tailwind.config.js + --input=css/app.css + --output=../priv/static/assets/app.css + ), + cd: Path.expand("../assets", __DIR__) + ] + +# Configures Elixir's Logger +config :logger, :console, + format: "$time $metadata[$level] $message\n", + metadata: [:request_id, :module, :function, :pid] + +# Use Jason for JSON parsing in Phoenix +config :phoenix, :json_library, Jason + +# Import environment specific config. This must remain at the bottom +# of this file so it overrides the configuration defined above. +import_config "#{config_env()}.exs" diff --git a/config/dev.exs b/config/dev.exs new file mode 100644 index 0000000..008a137 --- /dev/null +++ b/config/dev.exs @@ -0,0 +1,79 @@ +import Config + +# For development, we disable any cache and enable +# debugging and code reloading. +# +# The watchers configuration can be used to run external +# watchers to your application. For example, we can use it +# to bundle .js and .css sources. +phx_port = String.to_integer(System.get_env("CALORI_PHX_PORT") || "4000") + +config :calori, CaloriWeb.Endpoint, + # Binding to loopback ipv4 address prevents access from other machines. + # Change to `ip: {0, 0, 0, 0}` to allow access from other machines. + http: [ip: {127, 0, 0, 1}, port: 4000], + check_origin: false, + code_reloader: true, + debug_errors: true, + secret_key_base: "s2aBxGbsIr5tEWzokd9fM2hJUcq1eMdMsYTRR31qq0PSaR8626vbP0utKXC4np5z", + watchers: [ + esbuild: {Esbuild, :install_and_run, [:calori, ~w(--sourcemap=inline --watch)]}, + tailwind: {Tailwind, :install_and_run, [:calori, ~w(--watch)]} + ] + +# ## SSL Support +# +# In order to use HTTPS in development, a self-signed +# certificate can be generated by running the following +# Mix task: +# +# mix phx.gen.cert +# +# Run `mix help phx.gen.cert` for more information. +# +# The `http:` config above can be replaced with: +# +# https: [ +# port: 4001, +# cipher_suite: :strong, +# keyfile: "priv/cert/selfsigned_key.pem", +# certfile: "priv/cert/selfsigned.pem" +# ], +# +# If desired, both `http:` and `https:` keys can be +# configured to run both http and https servers on +# different ports. + +# Watch static and templates for browser reloading. +config :calori, CaloriWeb.Endpoint, + live_reload: [ + patterns: [ + ~r"priv/static/(?!uploads/).*(js|css|png|jpeg|jpg|gif|svg)$", + ~r"priv/gettext/.*(po)$", + ~r"lib/calori_web/(controllers|live|components)/.*(ex|heex)$" + ] + ] + +# Enable dev routes for dashboard and mailbox +config :calori, dev_routes: true + +# Do not include metadata nor timestamps in development logs +config :logger, :console, + format: "[$level] $message\n", + metadata: [:module, :function, :pid] + +# Set a higher stacktrace during development. Avoid configuring such +# in production as building large stacktraces may be expensive. +config :phoenix, :stacktrace_depth, 20 + +# Initialize plugs at runtime for faster development compilation +config :phoenix, :plug_init_mode, :runtime + +config :phoenix_live_view, + # Include HEEx debug annotations as HTML comments in rendered markup + debug_heex_annotations: true, + # Enable helpful, but potentially expensive runtime checks + enable_expensive_runtime_checks: true + +# Disable swoosh api client as it is only required for production adapters. +config :swoosh, :api_client, false diff --git a/config/prod.exs b/config/prod.exs new file mode 100644 index 0000000..3f355db --- /dev/null +++ b/config/prod.exs @@ -0,0 +1,29 @@ +import Config + +# Note we also include the path to a cache manifest +# containing the digested version of static files. This +# manifest is generated by the `mix assets.deploy` task, +# which you should run after static files are built and +# before starting your production server. +# config :calori, CaloriWeb.Endpoint, cache_static_manifest: "priv/static/cache_manifest.json" + +# Since the application is using the Hot upgrade, the static manifest cannot be static +config :calori, CaloriWeb.Endpoint, + live_reload: [ + patterns: [ + ~r"priv/static/.*(js|css|png|jpeg|jpg|gif|svg)$", + ~r"priv/gettext/.*(po)$" + ] + ] + +# Configures Swoosh API Client +config :swoosh, api_client: Swoosh.ApiClient.Finch, finch_name: Calori.Finch + +# Disable Swoosh Local Memory Storage +config :swoosh, local: false + +# Do not print debug messages in production +config :logger, level: :info + +# Runtime production configuration, including reading +# of environment variables, is done on config/runtime.exs. diff --git a/config/runtime.exs b/config/runtime.exs new file mode 100644 index 0000000..8bcda38 --- /dev/null +++ b/config/runtime.exs @@ -0,0 +1,97 @@ +import Config + +# config/runtime.exs is executed for all environments, including +# during releases. It is executed after compilation and before the +# system starts, so it is typically used to load production configuration +# and secrets from environment variables or elsewhere. Do not define +# any compile-time configuration in here, as it won't be applied. +# The block below contains prod specific runtime configuration. + +# ## Using releases +# +# If you use `mix release`, you need to explicitly enable the server +# by passing the PHX_SERVER=true when you start it: +# +# PHX_SERVER=true bin/calori start +# +# Alternatively, you can use `mix phx.gen.release` to generate a `bin/server` +# script that automatically sets the env var above. +if System.get_env("CALORI_PHX_SERVER") do + config :calori, CaloriWeb.Endpoint, server: true +end + +if config_env() == :prod do + # Set the cloud environment flag + config :calori, env: System.fetch_env!("CALORI_CLOUD_ENVIRONMENT") + + # The secret key base is used to sign/encrypt cookies and other secrets. + # A default value is used in config/dev.exs and config/test.exs but you + # want to use a different value for prod and you most likely don't want + # to check this value into version control, so we use an environment + # variable instead. + host = System.get_env("CALORI_PHX_HOST") || "example.com" + port = String.to_integer(System.fetch_env!("CALORI_PHX_PORT")) + + config :calori, :dns_cluster_query, System.get_env("DNS_CLUSTER_QUERY") + + config :calori, CaloriWeb.Endpoint, + url: [host: host, port: 443, scheme: "https"], + http: [ + # Enable IPv6 and bind on all interfaces. + # Set it to {0, 0, 0, 0, 0, 0, 0, 1} for local network only access. + # See the documentation on https://hexdocs.pm/bandit/Bandit.html#t:options/0 + # for details about using IPv6 vs IPv4 and loopback vs public addresses. + ip: {0, 0, 0, 0, 0, 0, 0, 0}, + port: port + ] + + # ## SSL Support + # + # To get SSL working, you will need to add the `https` key + # to your endpoint configuration: + # + # config :calori, CaloriWeb.Endpoint, + # https: [ + # ..., + # port: 443, + # cipher_suite: :strong, + # keyfile: System.get_env("SOME_APP_SSL_KEY_PATH"), + # certfile: System.get_env("SOME_APP_SSL_CERT_PATH") + # ] + # + # The `cipher_suite` is set to `:strong` to support only the + # latest and more secure SSL ciphers. This means old browsers + # and clients may not be supported. You can set it to + # `:compatible` for wider support. + # + # `:keyfile` and `:certfile` expect an absolute path to the key + # and cert in disk or a relative path inside priv, for example + # "priv/ssl/server.key". For all supported SSL configuration + # options, see https://hexdocs.pm/plug/Plug.SSL.html#configure/1 + # + # We also recommend setting `force_ssl` in your config/prod.exs, + # ensuring no data is ever sent via http, always redirecting to https: + # + # config :calori, CaloriWeb.Endpoint, + # force_ssl: [hsts: true] + # + # Check `Plug.SSL` for all available options in `force_ssl`. + + # ## Configuring the mailer + # + # In production you need to configure the mailer to use a different adapter. + # Also, you may need to configure the Swoosh API client of your choice if you + # are not using SMTP. Here is an example of the configuration: + # + # config :calori, Calori.Mailer, + # adapter: Swoosh.Adapters.Mailgun, + # api_key: System.get_env("MAILGUN_API_KEY"), + # domain: System.get_env("MAILGUN_DOMAIN") + # + # For this example you need include a HTTP client required by Swoosh API client. + # Swoosh supports Hackney and Finch out of the box: + # + # config :swoosh, :api_client, Swoosh.ApiClient.Hackney + # + # See https://hexdocs.pm/swoosh/Swoosh.html#module-installation for details. +end diff --git a/config/test.exs b/config/test.exs new file mode 100644 index 0000000..b6d4301 --- /dev/null +++ b/config/test.exs @@ -0,0 +1,24 @@ +import Config + +# We don't run a server during test. If one is required, +# you can enable the server option below. +config :calori, CaloriWeb.Endpoint, + http: [ip: {127, 0, 0, 1}, port: 4002], + secret_key_base: "flZWl/X1Ep3QZ9s+jDwirqKRw5XxL+N2L5erQ5VM/tQxObO0NptcW5lPtpWdMOT1", + server: false + +# In test we don't send emails. +config :calori, Calori.Mailer, adapter: Swoosh.Adapters.Test + +# Disable swoosh api client as it is only required for production adapters. +config :swoosh, :api_client, false + +# Print only warnings and errors during test +config :logger, level: :warning + +# Initialize plugs at runtime for faster test compilation +config :phoenix, :plug_init_mode, :runtime + +config :phoenix_live_view, + # Enable helpful, but potentially expensive runtime checks + enable_expensive_runtime_checks: true diff --git a/devops/terraform/.gitignore b/devops/terraform/.gitignore new file mode 100644 index 0000000..c4e044a --- /dev/null +++ b/devops/terraform/.gitignore @@ -0,0 +1,60 @@ +### macOS ### +# General +.DS_Store +.AppleDouble +.LSOverride + +# Thumbnails +._* + +### Terraform ### +# Local .terraform directories +**/.terraform/* + +# .tfstate files +*.tfstate +*.tfstate.* + +# Crash log files +crash.log +crash.*.log + +# Exclude all .tfvars files, which are likely to contain sensitive data, such as +# password, private keys, and other secrets. These should not be part of version +# control as they are data points which are potentially sensitive and subject +# to change depending on the environment. +*.tfvars +*.tfvars.json + +# Ignore override files as they are usually used to override resources locally and so +# are not checked in +override.tf +override.tf.json +*_override.tf +*_override.tf.json + +# Include override files you do wish to add to version control using negated pattern +# !example_override.tf + +# Include tfplan files to ignore the plan output of command: terraform plan -out=tfplan +# example: *tfplan* + +# Ignore CLI configuration files +.terraformrc +terraform.rc + +### Terragrunt ### +# terragrunt cache directories +**/.terragrunt-cache/* + +# Terragrunt debug output file (when using `--terragrunt-debug` option) +# See: https://terragrunt.gruntwork.io/docs/reference/cli-options/#terragrunt-debug +terragrunt-debug.tfvars.json + +### VisualStudioCode ### +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets \ No newline at end of file diff --git a/devops/terraform/environments/prod/.envrc b/devops/terraform/environments/prod/.envrc new file mode 100644 index 0000000..e1a7129 --- /dev/null +++ b/devops/terraform/environments/prod/.envrc @@ -0,0 +1 @@ +export AWS_PROFILE='prod' diff --git a/devops/terraform/environments/prod/.gitignore b/devops/terraform/environments/prod/.gitignore new file mode 100644 index 0000000..be6d295 --- /dev/null +++ b/devops/terraform/environments/prod/.gitignore @@ -0,0 +1 @@ +main.tf \ No newline at end of file diff --git a/devops/terraform/environments/prod/main_example.tf_ b/devops/terraform/environments/prod/main_example.tf_ new file mode 100644 index 0000000..cc8cec5 --- /dev/null +++ b/devops/terraform/environments/prod/main_example.tf_ @@ -0,0 +1,12 @@ +# Rename me to main.tf and populated with the corrected values + +provider "aws" { + region = "us-east-2" + allowed_account_ids = ["123456789"] +} + +module "standard_account" { + source = "../../modules/standard-account" + account_name = "stage" + server_dns = "example.com" +} diff --git a/devops/terraform/modules/standard-account/cloud-config.tpl b/devops/terraform/modules/standard-account/cloud-config.tpl new file mode 100644 index 0000000..0f33a14 --- /dev/null +++ b/devops/terraform/modules/standard-account/cloud-config.tpl @@ -0,0 +1,191 @@ +#cloud-config +# +# Cloud init template for EC2 calori instances. +# +# In case you need it, the log of the cloud-init can be found at: +# /var/log/cloud-init-output.log +# +packages: + - unzip + - nginx + - jq + +write_files: + - path: /home/ubuntu/install-upgrade.sh + owner: root:root + permissions: "0755" + content: | + #!/bin/bash + # + # Script to install or update deployex + # + # Check if the version was passed as an argument + if [ -z "$1" ]; then + # If not passed, use the default value + VERSION="0.1.0" + else + # If passed, use the passed value + VERSION="$1" + fi + # Stop service (if it is running) + systemctl stop deployex.service + # + echo "" + echo "# Updating Deployex #" + cd /tmp + echo "# Download the latest deployex version #" + rm -f deployex-ubuntu-20.04.tar.gz + wget https://github.com/thiagoesteves/deployex/releases/download/$${VERSION}/deployex-ubuntu-20.04.tar.gz + if [ $? != 0 ]; then + echo "Error while trying to download the version: $${VERSION}" + exit + fi + echo "# Clean and create a new directory #" + OPT_DIR=/opt/deployex + rm -rf $OPT_DIR + mkdir -p $OPT_DIR + cd $OPT_DIR + tar xf /tmp/deployex-ubuntu-20.04.tar.gz + echo "# Start systemd #" + systemctl daemon-reload + systemctl enable --now deployex.service + - path: /home/ubuntu/install-otp-certificates.sh + owner: root:root + permissions: "0755" + content: | + #!/bin/bash + # + # Script to install certificates + # + echo "" + echo "# Installing Certificates env: ${account_name} at /usr/local/share/ca-certificates #" + echo "Retrieving and saving ......" + aws secretsmanager get-secret-value --secret-id calori-${account_name}-otp-tls-ca | jq -r .SecretString > /usr/local/share/ca-certificates/ca.crt + aws secretsmanager get-secret-value --secret-id calori-${account_name}-otp-tls-key | jq -r .SecretString > /usr/local/share/ca-certificates/deployex.key + aws secretsmanager get-secret-value --secret-id holidex-${account_name}-otp-tls-key | jq -r .SecretString > /usr/local/share/ca-certificates/calori.key + aws secretsmanager get-secret-value --secret-id calori-${account_name}-otp-tls-crt | jq -r .SecretString > /usr/local/share/ca-certificates/deployex.crt + aws secretsmanager get-secret-value --secret-id calori-${account_name}-otp-tls-crt | jq -r .SecretString > /usr/local/share/ca-certificates/calori.crt + echo "[OK]" + - path: /home/ubuntu/config.json + owner: root:root + permissions: "0644" + content: | + { + "agent": { + "run_as_user": "root" + }, + "logs": { + "logs_collected": { + "files": { + "collect_list": [ + { + "file_path": "/var/log/deployex.log", + "log_group_name": "${log_group_name}", + "log_stream_name": "{instance_id}-deployex-log", + "timezone": "UTC", + "timestamp_format": "%H: %M: %S%Y%b%-d" + }, + { + "file_path": "/var/log/calori-stdout.log", + "log_group_name": "${log_group_name}", + "log_stream_name": "{instance_id}-calori-stdout-log", + "timezone": "UTC", + "timestamp_format": "%H: %M: %S%Y%b%-d" + }, + { + "file_path": "/var/log/calori-stderr.log", + "log_group_name": "${log_group_name}", + "log_stream_name": "{instance_id}-calori-stderr-log", + "timezone": "UTC", + "timestamp_format": "%H: %M: %S%Y%b%-d" + } + ] + } + } + } + } + - path: /etc/nginx/sites-available/default + owner: root:root + permissions: "0644" + content: | + upstream phoenix { + server 127.0.0.1:4000 max_fails=5 fail_timeout=60s; + } + + server { + server_name ${hostname}; + listen 80; + + client_max_body_size 30M; + location / { + allow all; + + # Proxy Headers + proxy_http_version 1.1; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header Host $http_host; + proxy_set_header X-Cluster-Client-Ip $remote_addr; + + # The Important Websocket Bits! + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "upgrade"; + + proxy_pass http://phoenix; + } + } + - path: /etc/systemd/system/deployex.service + owner: root:root + permissions: "0644" + content: | + [Unit] + Description=Deployex daemon + After=network.target + + [Service] + Environment=SHELL=/usr/bin/bash + Environment=AWS_REGION=${aws_region} + Environment=CALORI_PHX_HOST=${hostname} + Environment=CALORI_PHX_SERVER=true + Environment=CALORI_PHX_PORT=4000 + Environment=CALORI_CLOUD_ENVIRONMENT=${account_name} + Environment=CALORI_OTP_TLS_CERT_PATH=/usr/local/share/ca-certificates + Environment=DEPLOYEX_CLOUD_ENVIRONMENT=${account_name} + Environment=DEPLOYEX_OTP_TLS_CERT_PATH=/usr/local/share/ca-certificates + Environment=DEPLOYEX_STORAGE_ADAPTER=s3 + Environment=DEPLOYEX_MONITORED_APP_NAME=calori + ExecStart=/opt/deployex/bin/deployex start + StandardOutput=append:/var/log/deployex.log + KillMode=process + Restart=on-failure + RestartSec=3 + LimitNPROC=infinity + LimitCORE=infinity + LimitNOFILE=infinity + RuntimeDirectory=deployex + User=deployex + Group=deployex + + [Install] + WantedBy=multi-user.target +runcmd: + - cd /tmp + - curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" "-o" "awscliv2.zip" + - unzip "awscliv2.zip" + - ./aws/install + - ./aws/install --update + - mkdir /opt/deployex + - useradd -c "Deployer User" -d /var/deployex -s /usr/sbin/nologin --user-group --no-create-home deployex + - mkdir /etc/deployex + - mkdir /var/lib/deployex + - chown deployex:deployex /var/lib/deployex + - touch /var/log/deployex.log + - touch /var/log/calori-stdout.log + - touch /var/log/calori-stderr.log + - chown deployex:deployex /var/log/calori-stdout.log + - chown deployex:deployex /var/log/calori-stderr.log + - wget https://s3.amazonaws.com/amazoncloudwatch-agent/ubuntu/amd64/latest/amazon-cloudwatch-agent.deb + - dpkg -i -E ./amazon-cloudwatch-agent.deb + - /opt/aws/amazon-cloudwatch-agent/bin/amazon-cloudwatch-agent-ctl -a fetch-config -m ec2 -c file:/home/ubuntu/config.json -s + - systemctl enable --no-block nginx + - systemctl start --no-block nginx + - reboot \ No newline at end of file diff --git a/devops/terraform/modules/standard-account/ec2.tf b/devops/terraform/modules/standard-account/ec2.tf new file mode 100644 index 0000000..662a81b --- /dev/null +++ b/devops/terraform/modules/standard-account/ec2.tf @@ -0,0 +1,118 @@ +data "aws_ami" "ubuntu" { + most_recent = true + + filter { + name = "name" + values = ["ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*"] + } + + filter { + name = "virtualization-type" + values = ["hvm"] + } + + owners = ["099720109477"] # Canonical +} + +resource "aws_security_group" "ec2_security" { + name = "calori-${var.account_name}-ec2-security-group" + description = "Allow SSH traffic from everywhere" + vpc_id = aws_vpc.custom_vpc.id +} + +resource "aws_security_group_rule" "allow_ingress_ssh" { + security_group_id = "${aws_security_group.ec2_security.id}" + type = "ingress" + protocol = "tcp" + from_port = 22 + to_port = 22 + cidr_blocks = ["0.0.0.0/0"] +} + +resource "aws_security_group_rule" "allow_ingress_http" { + security_group_id = "${aws_security_group.ec2_security.id}" + type = "ingress" + protocol = "tcp" + from_port = 80 + to_port = 80 + cidr_blocks = ["0.0.0.0/0"] +} + +resource "aws_security_group_rule" "allow_ingress_https" { + security_group_id = "${aws_security_group.ec2_security.id}" + type = "ingress" + protocol = "tcp" + from_port = 443 + to_port = 443 + cidr_blocks = ["0.0.0.0/0"] +} + +resource "aws_security_group_rule" "allow_egress_all" { + security_group_id = "${aws_security_group.ec2_security.id}" + type = "egress" + protocol = "-1" + from_port = 0 + to_port = 0 + cidr_blocks = ["0.0.0.0/0"] +} + +data "aws_iam_policy_document" "ec2_assume_role" { + statement { + effect = "Allow" + + principals { + type = "Service" + identifiers = ["ec2.amazonaws.com"] + } + + actions = ["sts:AssumeRole"] + } +} + +resource "aws_iam_role" "ec2_iam_role" { + name = "calori-${var.account_name}-instance-role" + assume_role_policy = data.aws_iam_policy_document.ec2_assume_role.json + managed_policy_arns = [ + aws_iam_policy.s3_distribution_bucket_policy.arn, + aws_iam_policy.calori_secrets_manager_policy.arn, + aws_iam_policy.ec2_cloudwatch_policy.arn + ] +} + +resource "aws_iam_instance_profile" "calori_node" { + name = "calori-${var.account_name}-ec2-profile" + role = aws_iam_role.ec2_iam_role.name +} + +data "cloudinit_config" "server_config" { + gzip = true + base64_encode = true + part { + content_type = "text/cloud-config" + content = templatefile("${path.module}/cloud-config.tpl", { + hostname = "${var.server_dns}" + log_group_name = aws_cloudwatch_log_group.ec2_instance_logs.name + account_name = "${var.account_name}" + aws_region = "${var.aws_region}" + }) + } +} + +resource "aws_instance" "ec2_calori_instance" { + ami = data.aws_ami.ubuntu.id + instance_type = "t2.micro" + key_name = "${var.aws_key_name}" + vpc_security_group_ids = [aws_security_group.ec2_security.id] + subnet_id = aws_subnet.public_subnet.id + iam_instance_profile = aws_iam_instance_profile.calori_node.name + associate_public_ip_address = true + user_data = data.cloudinit_config.server_config.rendered + user_data_replace_on_change = true + + tags = { + Name = "calori-${var.account_name}-instance" + } + lifecycle { + create_before_destroy = true + } +} diff --git a/devops/terraform/modules/standard-account/metrics.tf b/devops/terraform/modules/standard-account/metrics.tf new file mode 100644 index 0000000..467c7d8 --- /dev/null +++ b/devops/terraform/modules/standard-account/metrics.tf @@ -0,0 +1,26 @@ +# +# Logs and metrics +# + +resource "aws_cloudwatch_log_group" "ec2_instance_logs" { + name = "calori-${var.account_name}-ec2-instance-logs" +} + +resource "aws_iam_policy" "ec2_cloudwatch_policy" { + name = "calori-${var.account_name}-ec2-cloudwatch-policy" + + policy = jsonencode({ + Version = "2012-10-17" + Statement = [ + { + Action = [ + "logs:Create*", + "logs:PutLogEvents", + "logs:DescribeLogStreams" + ] + Effect = "Allow" + Resource = "arn:aws:logs:*:*:*" + }, + ] + }) +} \ No newline at end of file diff --git a/devops/terraform/modules/standard-account/s3.tf b/devops/terraform/modules/standard-account/s3.tf new file mode 100644 index 0000000..3285491 --- /dev/null +++ b/devops/terraform/modules/standard-account/s3.tf @@ -0,0 +1,57 @@ +# +# S3 definitions +# + +variable "s3_folders" { + type = list + description = "S3 folders to create for distribution" + default = ["dist/calori", "versions/calori"] +} + +resource "aws_s3_bucket" "distribution" { + bucket = "calori-${var.account_name}-distribution" + + tags = { + Name = "Distribution bucket" + } +} + +resource "aws_s3_object" "distribution_directory_structure" { + count = "${length(var.s3_folders)}" + + bucket = "${aws_s3_bucket.distribution.id}" + acl = "private" + key = "${var.s3_folders[count.index]}/" + content_type = "application/x-directory" + source = "/dev/null" +} + +# Grant EC2 instances read access to the central S3 distribution +resource "aws_iam_policy" "s3_distribution_bucket_policy" { + name = "calori-${var.account_name}-s3-distribution-bucket" + + policy = jsonencode({ + Version = "2012-10-17" + Statement = [ + { + Action = [ + "s3:GetBucketLocation", + "s3:GetBucketVersioning", + "s3:ListBucket" + ] + Effect = "Allow" + Resource = "arn:aws:s3:::calori-${var.account_name}-distribution" + }, + { + Action = [ + "s3:GetObject", + "s3:GetObjectVersion" + ] + Effect = "Allow" + Resource = "arn:aws:s3:::calori-${var.account_name}-distribution/*" + }, + ] + }) +} + + diff --git a/devops/terraform/modules/standard-account/secrets.tf b/devops/terraform/modules/standard-account/secrets.tf new file mode 100644 index 0000000..0f455ac --- /dev/null +++ b/devops/terraform/modules/standard-account/secrets.tf @@ -0,0 +1,62 @@ +# ATTENTION: The values are expected to be set manually by the DASHBOARD +# +# If it is not running on development, remove the recovery_window_in_days = 0 +# from the secrets +# +locals { + secret_tag = { + ManagedManually = true + } +} + +resource "aws_secretsmanager_secret" "calori_secrets" { + name = "calori-${var.account_name}-secrets" + description = "All Calori Secrets" + recovery_window_in_days = 0 + tags = local.secret_tag +} + +resource "aws_secretsmanager_secret" "calori_otp_tls_ca" { + name = "calori-${var.account_name}-otp-tls-ca" + description = "TLS ca certificate for OTP distribution" + recovery_window_in_days = 0 + tags = local.secret_tag +} + +resource "aws_secretsmanager_secret" "calori_otp_tls_key" { + name = "calori-${var.account_name}-otp-tls-key" + description = "TLS key certificate for OTP distribution" + recovery_window_in_days = 0 + tags = local.secret_tag +} + +resource "aws_secretsmanager_secret" "calori_otp_tls_crt" { + name = "calori-${var.account_name}-otp-tls-crt" + description = "TLS key certificate for OTP distribution" + recovery_window_in_days = 0 + tags = local.secret_tag +} + +# Create an IAM policy to grant access to Secrets Manager +resource "aws_iam_policy" "calori_secrets_manager_policy" { + name = "calori-${var.account_name}-secrets-manager-access-policy" + description = "Policy for EC2 to access Secrets Manager" + + policy = jsonencode({ + Version = "2012-10-17", + Statement = [ + { + Action = [ + "secretsmanager:GetSecretValue", + ], + Effect = "Allow", + Resource = [ + aws_secretsmanager_secret.calori_secrets.arn, + aws_secretsmanager_secret.calori_otp_tls_ca.arn, + aws_secretsmanager_secret.calori_otp_tls_key.arn, + aws_secretsmanager_secret.calori_otp_tls_crt.arn, + ], + }, + ], + }) +} diff --git a/devops/terraform/modules/standard-account/variables.tf b/devops/terraform/modules/standard-account/variables.tf new file mode 100644 index 0000000..ed76a81 --- /dev/null +++ b/devops/terraform/modules/standard-account/variables.tf @@ -0,0 +1,19 @@ +variable "account_name" { + type = string + nullable = false +} + +variable "server_dns" { + type = string + nullable = false +} + +# ec2 key pair name +variable "aws_key_name" { + default = "calori-web-ec2" +} + +variable "aws_region" { + description = "The AWS region to use" + default = "sa-east-1" +} diff --git a/devops/terraform/modules/standard-account/vpc.tf b/devops/terraform/modules/standard-account/vpc.tf new file mode 100644 index 0000000..73b10cc --- /dev/null +++ b/devops/terraform/modules/standard-account/vpc.tf @@ -0,0 +1,70 @@ +# +# Virtual Private Network configuration. +# +# VPC (10.0.0.0/16) + +data "aws_availability_zones" "available" { + state = "available" +} + +resource "aws_vpc" "custom_vpc" { + enable_dns_hostnames = true + enable_dns_support = true + + cidr_block = "10.0.0.0/16" + + tags = { + Name = "calori-${var.account_name}-vpc" + } +} + +resource "aws_subnet" "public_subnet" { + vpc_id = aws_vpc.custom_vpc.id + cidr_block = "10.0.1.0/24" + availability_zone = data.aws_availability_zones.available.names[0] + + tags = { + Name = "Calori Public Subnet" + } +} + +resource "aws_subnet" "private_subnet" { + vpc_id = aws_vpc.custom_vpc.id + cidr_block = "10.0.2.0/24" + availability_zone = data.aws_availability_zones.available.names[0] + + tags = { + Name = "Calori Private Subnet" + } +} + +resource "aws_internet_gateway" "calori_gateway" { + vpc_id = aws_vpc.custom_vpc.id + + tags = { + Name = "Some Internet Gateway" + } +} + +resource "aws_route_table" "public_rt" { + vpc_id = aws_vpc.custom_vpc.id + + route { + cidr_block = "0.0.0.0/0" + gateway_id = aws_internet_gateway.calori_gateway.id + } + + route { + ipv6_cidr_block = "::/0" + gateway_id = aws_internet_gateway.calori_gateway.id + } + + tags = { + Name = "Public Route Table" + } +} + +resource "aws_route_table_association" "public_1_rt_a" { + subnet_id = aws_subnet.public_subnet.id + route_table_id = aws_route_table.public_rt.id +} \ No newline at end of file diff --git a/lib/calori.ex b/lib/calori.ex new file mode 100644 index 0000000..2531e92 --- /dev/null +++ b/lib/calori.ex @@ -0,0 +1,9 @@ +defmodule Calori do + @moduledoc """ + Calori keeps the contexts that define your domain + and business logic. + + Contexts are also responsible for managing your data, regardless + if it comes from the database, an external API or others. + """ +end diff --git a/lib/calori/application.ex b/lib/calori/application.ex new file mode 100644 index 0000000..7d5d31e --- /dev/null +++ b/lib/calori/application.ex @@ -0,0 +1,35 @@ +defmodule Calori.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 = [ + CaloriWeb.Telemetry, + {DNSCluster, query: Application.get_env(:calori, :dns_cluster_query) || :ignore}, + {Phoenix.PubSub, name: Calori.PubSub}, + # Start the Finch HTTP client for sending emails + {Finch, name: Calori.Finch}, + # Start a worker by calling: Calori.Worker.start_link(arg) + # {Calori.Worker, arg}, + # Start to serve requests, typically the last entry + CaloriWeb.Endpoint + ] + + # See https://hexdocs.pm/elixir/Supervisor.html + # for other strategies and supported options + opts = [strategy: :one_for_one, name: Calori.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 + CaloriWeb.Endpoint.config_change(changed, removed) + :ok + end +end diff --git a/lib/calori/mailer.ex b/lib/calori/mailer.ex new file mode 100644 index 0000000..6a8ee48 --- /dev/null +++ b/lib/calori/mailer.ex @@ -0,0 +1,3 @@ +defmodule Calori.Mailer do + use Swoosh.Mailer, otp_app: :calori +end diff --git a/lib/calori_web.ex b/lib/calori_web.ex new file mode 100644 index 0000000..15384bf --- /dev/null +++ b/lib/calori_web.ex @@ -0,0 +1,113 @@ +defmodule CaloriWeb do + @moduledoc """ + The entrypoint for defining your web interface, such + as controllers, components, channels, and so on. + + This can be used in your application as: + + use CaloriWeb, :controller + use CaloriWeb, :html + + The definitions below will be executed for every controller, + component, etc, so keep them short and clean, focused + on imports, uses and aliases. + + Do NOT define functions inside the quoted expressions + below. Instead, define additional modules and import + those modules here. + """ + + def static_paths, do: ~w(assets fonts images favicon.ico robots.txt) + + def router do + quote do + use Phoenix.Router, helpers: false + + # Import common connection and controller functions to use in pipelines + import Plug.Conn + import Phoenix.Controller + import Phoenix.LiveView.Router + end + end + + def channel do + quote do + use Phoenix.Channel + end + end + + def controller do + quote do + use Phoenix.Controller, + formats: [:html, :json], + layouts: [html: CaloriWeb.Layouts] + + import Plug.Conn + import CaloriWeb.Gettext + + unquote(verified_routes()) + end + end + + def live_view do + quote do + use Phoenix.LiveView, + layout: {CaloriWeb.Layouts, :app} + + unquote(html_helpers()) + end + end + + def live_component do + quote do + use Phoenix.LiveComponent + + unquote(html_helpers()) + end + end + + def html do + quote do + use Phoenix.Component + + # Import convenience functions from controllers + import Phoenix.Controller, + only: [get_csrf_token: 0, view_module: 1, view_template: 1] + + # Include general helpers for rendering HTML + unquote(html_helpers()) + end + end + + defp html_helpers do + quote do + # HTML escaping functionality + import Phoenix.HTML + # Core UI components and translation + import CaloriWeb.CoreComponents + import CaloriWeb.Gettext + + # Shortcut for generating JS commands + alias Phoenix.LiveView.JS + + # Routes generation with the ~p sigil + unquote(verified_routes()) + end + end + + def verified_routes do + quote do + use Phoenix.VerifiedRoutes, + endpoint: CaloriWeb.Endpoint, + router: CaloriWeb.Router, + statics: CaloriWeb.static_paths() + end + end + + @doc """ + When used, dispatch to the appropriate controller/live_view/etc. + """ + defmacro __using__(which) when is_atom(which) do + apply(__MODULE__, which, []) + end +end diff --git a/lib/calori_web/components/core_components.ex b/lib/calori_web/components/core_components.ex new file mode 100644 index 0000000..8f2fc83 --- /dev/null +++ b/lib/calori_web/components/core_components.ex @@ -0,0 +1,759 @@ +defmodule CaloriWeb.CoreComponents do + @moduledoc """ + Provides core UI components. + + At first glance, this module may seem daunting, but its goal is to provide + core building blocks for your application, such as modals, tables, and + forms. The components consist mostly of markup and are well-documented + with doc strings and declarative assigns. You may customize and style + them in any way you want, based on your application growth and needs. + + The default components use Tailwind CSS, a utility-first CSS framework. + See the [Tailwind CSS documentation](https://tailwindcss.com) to learn + how to customize them or feel free to swap in another framework altogether. + + Icons are provided by [heroicons](https://heroicons.com). See `icon/1` for usage. + """ + use Phoenix.Component + + alias Phoenix.HTML.Form + alias Phoenix.LiveView.JS + import CaloriWeb.Gettext + + @doc """ + Renders a modal. + + ## Examples + + <.modal id="confirm-modal"> + This is a modal. + + + JS commands may be passed to the `:on_cancel` to configure + the closing/cancel event, for example: + + <.modal id="confirm" on_cancel={JS.navigate(~p"/posts")}> + This is another modal. + + + """ + attr :id, :string, required: true + attr :show, :boolean, default: false + attr :on_cancel, JS, default: %JS{} + slot :inner_block, required: true + + def modal(assigns) do + ~H""" + + """ + end + + def input(%{type: "select"} = assigns) do + ~H""" +
+ <.label for={@id}><%= @label %> + + <.error :for={msg <- @errors}><%= msg %> +
+ """ + end + + def input(%{type: "textarea"} = assigns) do + ~H""" +
+ <.label for={@id}><%= @label %> + + <.error :for={msg <- @errors}><%= msg %> +
+ """ + end + + # All other inputs text, datetime-local, url, password, etc. are handled here... + def input(assigns) do + ~H""" +
+ <.label for={@id}><%= @label %> + + <.error :for={msg <- @errors}><%= msg %> +
+ """ + end + + @doc """ + Renders a label. + """ + attr :for, :string, default: nil + slot :inner_block, required: true + + def label(assigns) do + ~H""" + + """ + end + + @doc """ + Generates a generic error message. + """ + slot :inner_block, required: true + + def error(assigns) do + ~H""" +

+ <.icon name="hero-exclamation-circle-mini" class="mt-0.5 h-5 w-5 flex-none" /> + <%= render_slot(@inner_block) %> +

+ """ + end + + @doc """ + Renders a header with title. + """ + attr :class, :string, default: nil + + slot :inner_block, required: true + slot :subtitle + slot :actions + + def header(assigns) do + ~H""" +
+
+

+ <%= render_slot(@inner_block) %> +

+

+ <%= render_slot(@subtitle) %> +

+
+
<%= render_slot(@actions) %>
+
+ """ + end + + @doc ~S""" + Renders a table with generic styling. + + ## Examples + + <.table id="users" rows={@users}> + <:col :let={user} label="id"><%= user.id %> + <:col :let={user} label="username"><%= user.username %> + + """ + attr :id, :string, required: true + attr :rows, :list, required: true + attr :row_id, :any, default: nil, doc: "the function for generating the row id" + attr :row_click, :any, default: nil, doc: "the function for handling phx-click on each row" + + attr :row_item, :any, + default: &Function.identity/1, + doc: "the function for mapping each row before calling the :col and :action slots" + + slot :col, required: true do + attr :label, :string + end + + slot :action, doc: "the slot for showing user actions in the last table column" + + def table(assigns) do + assigns = + with %{rows: %Phoenix.LiveView.LiveStream{}} <- assigns do + assign(assigns, row_id: assigns.row_id || fn {id, _item} -> id end) + end + + ~H""" +
+ + + + + + + + + + + + + +
<%= col[:label] %> + <%= gettext("Actions") %> +
+
+ + + <%= render_slot(col, @row_item.(row)) %> + +
+
+
+ + + <%= render_slot(action, @row_item.(row)) %> + +
+
+
+ """ + end + + @doc """ + Renders a data list. + + ## Examples + + <.list> + <:item title="Title"><%= @post.title %> + <:item title="Views"><%= @post.views %> + + """ + slot :item, required: true do + attr :title, :string, required: true + end + + def list(assigns) do + ~H""" +
+
+
+
<%= item.title %>
+
<%= render_slot(item) %>
+
+
+
+ """ + end + + @doc """ + Renders a back navigation link. + + ## Examples + + <.back navigate={~p"/posts"}>Back to posts + """ + attr :navigate, :any, required: true + slot :inner_block, required: true + + def back(assigns) do + ~H""" +
+ <.link + navigate={@navigate} + class="text-sm font-semibold leading-6 text-zinc-900 hover:text-zinc-700" + > + <.icon name="hero-arrow-left-solid" class="h-3 w-3" /> + <%= render_slot(@inner_block) %> + +
+ """ + end + + @doc """ + Renders a [Heroicon](https://heroicons.com). + + Heroicons come in three styles – outline, solid, and mini. + By default, the outline style is used, but solid and mini may + be applied by using the `-solid` and `-mini` suffix. + + You can customize the size and colors of the icons by setting + width, height, and background color classes. + + Icons are extracted from the `deps/heroicons` directory and bundled within + your compiled app.css by the plugin in your `assets/tailwind.config.js`. + + ## Examples + + <.icon name="hero-x-mark-solid" /> + <.icon name="hero-arrow-path" class="ml-1 w-3 h-3 animate-spin" /> + """ + attr :name, :string, required: true + attr :class, :string, default: nil + + def icon(%{name: "hero-" <> _} = assigns) do + ~H""" + + """ + end + + ## JS Commands + + def show(js \\ %JS{}, selector) do + JS.show(js, + to: selector, + transition: + {"transition-all transform ease-out duration-300", + "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95", + "opacity-100 translate-y-0 sm:scale-100"} + ) + end + + def hide(js \\ %JS{}, selector) do + JS.hide(js, + to: selector, + time: 200, + transition: + {"transition-all transform ease-in duration-200", + "opacity-100 translate-y-0 sm:scale-100", + "opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"} + ) + end + + def show_modal(js \\ %JS{}, id) when is_binary(id) do + js + |> JS.show(to: "##{id}") + |> JS.show( + to: "##{id}-bg", + transition: {"transition-all transform ease-out duration-300", "opacity-0", "opacity-100"} + ) + |> show("##{id}-container") + |> JS.add_class("overflow-hidden", to: "body") + |> JS.focus_first(to: "##{id}-content") + end + + def hide_modal(js \\ %JS{}, id) do + js + |> JS.hide( + to: "##{id}-bg", + transition: {"transition-all transform ease-in duration-200", "opacity-100", "opacity-0"} + ) + |> hide("##{id}-container") + |> JS.hide(to: "##{id}", transition: {"block", "block", "hidden"}) + |> JS.remove_class("overflow-hidden", to: "body") + |> JS.pop_focus() + end + + @doc """ + Translates an error message using gettext. + """ + def translate_error({msg, opts}) do + # When using gettext, we typically pass the strings we want + # to translate as a static argument: + # + # # Translate the number of files with plural rules + # dngettext("errors", "1 file", "%{count} files", count) + # + # However the error messages in our forms and APIs are generated + # dynamically, so we need to translate them by calling Gettext + # with our gettext backend as first argument. Translations are + # available in the errors.po file (as we use the "errors" domain). + if count = opts[:count] do + Gettext.dngettext(CaloriWeb.Gettext, "errors", msg, msg, count, opts) + else + Gettext.dgettext(CaloriWeb.Gettext, "errors", msg, opts) + end + end + + @doc """ + Translates the errors for a field from a keyword list of errors. + """ + def translate_errors(errors, field) when is_list(errors) do + for {^field, {msg, opts}} <- errors, do: translate_error({msg, opts}) + end + + @doc """ + Copied/Modified from https://fullstackphoenix.com/tutorials/tailwind-navbar-new-liveview-0-18-components + """ + attr :name, :string, default: "Calori App" + + def logo(assigns) do + ~H""" + + + + + + <%= @name %> + + """ + end + + slot :logo + slot :link, default: [%{__slot__: :link, inner_block: nil, label: "Home", to: "/home"}] + + @doc """ + Copied/Modified from https://fullstackphoenix.com/tutorials/tailwind-navbar-new-liveview-0-18-components + """ + def navbar(assigns) do + ~H""" + + """ + end + + defp toggle_dropdown(id, js \\ %JS{}) do + js + |> JS.toggle(to: id) + end +end diff --git a/lib/calori_web/components/layouts.ex b/lib/calori_web/components/layouts.ex new file mode 100644 index 0000000..6730bb5 --- /dev/null +++ b/lib/calori_web/components/layouts.ex @@ -0,0 +1,14 @@ +defmodule CaloriWeb.Layouts do + @moduledoc """ + This module holds different layouts used by your application. + + See the `layouts` directory for all templates available. + The "root" layout is a skeleton rendered as part of the + application router. The "app" layout is set as the default + layout on both `use CaloriWeb, :controller` and + `use CaloriWeb, :live_view`. + """ + use CaloriWeb, :html + + embed_templates "layouts/*" +end diff --git a/lib/calori_web/components/layouts/app.html.heex b/lib/calori_web/components/layouts/app.html.heex new file mode 100644 index 0000000..ccd17bf --- /dev/null +++ b/lib/calori_web/components/layouts/app.html.heex @@ -0,0 +1,22 @@ +
+ <.navbar> + <:logo> + <.link navigate="/" class="flex items-center"> + <.logo /> + + + <:link label="Home" to={~p"/home"} /> + <:link label="About" to={~p"/home"} /> + +
+ +
+
+
+
+ <.flash_group flash={@flash} /> + <%= @inner_content %> +
+
+
+
diff --git a/lib/calori_web/components/layouts/root.html.heex b/lib/calori_web/components/layouts/root.html.heex new file mode 100644 index 0000000..fa54287 --- /dev/null +++ b/lib/calori_web/components/layouts/root.html.heex @@ -0,0 +1,17 @@ + + + + + + + <.live_title suffix=" · Beam"> + <%= assigns[:page_title] || "Calori" %> + + + + + + <%= @inner_content %> + + diff --git a/lib/calori_web/controllers/error_html.ex b/lib/calori_web/controllers/error_html.ex new file mode 100644 index 0000000..f940ed9 --- /dev/null +++ b/lib/calori_web/controllers/error_html.ex @@ -0,0 +1,24 @@ +defmodule CaloriWeb.ErrorHTML do + @moduledoc """ + This module is invoked by your endpoint in case of errors on HTML requests. + + See config/config.exs. + """ + use CaloriWeb, :html + + # If you want to customize your error pages, + # uncomment the embed_templates/1 call below + # and add pages to the error directory: + # + # * lib/calori_web/controllers/error_html/404.html.heex + # * lib/calori_web/controllers/error_html/500.html.heex + # + # embed_templates "error_html/*" + + # The default is to render a plain text page based on + # the template name. For example, "404.html" becomes + # "Not Found". + def render(template, _assigns) do + Phoenix.Controller.status_message_from_template(template) + end +end diff --git a/lib/calori_web/controllers/error_json.ex b/lib/calori_web/controllers/error_json.ex new file mode 100644 index 0000000..36d6ae4 --- /dev/null +++ b/lib/calori_web/controllers/error_json.ex @@ -0,0 +1,21 @@ +defmodule CaloriWeb.ErrorJSON do + @moduledoc """ + This module is invoked by your endpoint in case of errors on JSON requests. + + See config/config.exs. + """ + + # If you want to customize a particular status code, + # you may add your own clauses, such as: + # + # def render("500.json", _assigns) do + # %{errors: %{detail: "Internal Server Error"}} + # end + + # By default, Phoenix returns the status message from + # the template name. For example, "404.json" becomes + # "Not Found". + def render(template, _assigns) do + %{errors: %{detail: Phoenix.Controller.status_message_from_template(template)}} + end +end diff --git a/lib/calori_web/controllers/page_controller.ex b/lib/calori_web/controllers/page_controller.ex new file mode 100644 index 0000000..c6c9360 --- /dev/null +++ b/lib/calori_web/controllers/page_controller.ex @@ -0,0 +1,9 @@ +defmodule CaloriWeb.PageController do + use CaloriWeb, :controller + + def home(conn, _params) do + # redirect to the default page, e. g., home or login + conn + |> redirect(to: ~p"/home") + end +end diff --git a/lib/calori_web/controllers/page_html.ex b/lib/calori_web/controllers/page_html.ex new file mode 100644 index 0000000..078fa39 --- /dev/null +++ b/lib/calori_web/controllers/page_html.ex @@ -0,0 +1,10 @@ +defmodule CaloriWeb.PageHTML do + @moduledoc """ + This module contains pages rendered by PageController. + + See the `page_html` directory for all templates available. + """ + use CaloriWeb, :html + + embed_templates "page_html/*" +end diff --git a/lib/calori_web/controllers/page_html/home.html.heex b/lib/calori_web/controllers/page_html/home.html.heex new file mode 100644 index 0000000..dc1820b --- /dev/null +++ b/lib/calori_web/controllers/page_html/home.html.heex @@ -0,0 +1,222 @@ +<.flash_group flash={@flash} /> + +
+
+ +

+ Phoenix Framework + + v<%= Application.spec(:phoenix, :vsn) %> + +

+

+ Peace of mind from prototype to production. +

+

+ Build rich, interactive web applications quickly, with less code and fewer moving parts. Join our growing community of developers using Phoenix to craft APIs, HTML5 apps and more, for fun or at scale. +

+ +
+
diff --git a/lib/calori_web/endpoint.ex b/lib/calori_web/endpoint.ex new file mode 100644 index 0000000..78a6b24 --- /dev/null +++ b/lib/calori_web/endpoint.ex @@ -0,0 +1,52 @@ +defmodule CaloriWeb.Endpoint do + use Phoenix.Endpoint, otp_app: :calori + + # The session will be stored in the cookie and signed, + # this means its contents can be read but not tampered with. + # Set :encryption_salt if you would also like to encrypt it. + @session_options [ + store: :cookie, + key: "_calori_key", + signing_salt: "Ig+PZEuc", + same_site: "Lax" + ] + + socket "/live", Phoenix.LiveView.Socket, + websocket: [connect_info: [session: @session_options]], + longpoll: [connect_info: [session: @session_options]] + + # Serve at "/" the static files from "priv/static" directory. + # + # You should set gzip to true if you are running phx.digest + # when deploying your static files in production. + plug Plug.Static, + at: "/", + from: :calori, + gzip: false, + only: CaloriWeb.static_paths() + + # Code reloading can be explicitly enabled under the + # :code_reloader configuration of your endpoint. + if code_reloading? do + socket "/phoenix/live_reload/socket", Phoenix.LiveReloader.Socket + plug Phoenix.LiveReloader + plug Phoenix.CodeReloader + end + + plug Phoenix.LiveDashboard.RequestLogger, + param_key: "request_logger", + cookie_key: "request_logger" + + plug Plug.RequestId + plug Plug.Telemetry, event_prefix: [:phoenix, :endpoint] + + plug Plug.Parsers, + parsers: [:urlencoded, :multipart, :json], + pass: ["*/*"], + json_decoder: Phoenix.json_library() + + plug Plug.MethodOverride + plug Plug.Head + plug Plug.Session, @session_options + plug CaloriWeb.Router +end diff --git a/lib/calori_web/gettext.ex b/lib/calori_web/gettext.ex new file mode 100644 index 0000000..89a17b5 --- /dev/null +++ b/lib/calori_web/gettext.ex @@ -0,0 +1,24 @@ +defmodule CaloriWeb.Gettext do + @moduledoc """ + A module providing Internationalization with a gettext-based API. + + By using [Gettext](https://hexdocs.pm/gettext), + your module gains a set of macros for translations, for example: + + import CaloriWeb.Gettext + + # Simple translation + gettext("Here is the string to translate") + + # Plural translation + ngettext("Here is the string to translate", + "Here are the strings to translate", + 3) + + # Domain-based translation + dgettext("errors", "Here is the error message to translate") + + See the [Gettext Docs](https://hexdocs.pm/gettext) for detailed usage. + """ + use Gettext, otp_app: :calori +end diff --git a/lib/calori_web/live/about.ex b/lib/calori_web/live/about.ex new file mode 100644 index 0000000..ea2805e --- /dev/null +++ b/lib/calori_web/live/about.ex @@ -0,0 +1,22 @@ +defmodule CaloriWeb.AboutLive do + use CaloriWeb, :live_view + + @impl true + def render(assigns) do + ~H""" +
+

+ Coming Soon +

+

+ We're working hard to bring you something amazing. Stay tuned! +

+
+ """ + end + + @impl true + def mount(_params, _session, socket) do + {:ok, socket} + end +end diff --git a/lib/calori_web/router.ex b/lib/calori_web/router.ex new file mode 100644 index 0000000..2bb6a27 --- /dev/null +++ b/lib/calori_web/router.ex @@ -0,0 +1,52 @@ +defmodule CaloriWeb.Router do + use CaloriWeb, :router + + pipeline :browser do + plug :accepts, ["html"] + plug :fetch_session + plug :fetch_live_flash + plug :put_root_layout, html: {CaloriWeb.Layouts, :root} + plug :protect_from_forgery + + plug :put_secure_browser_headers, %{ + "content-security-policy" => + "default-src 'self' 'unsafe-inline' opshealth.net *.opshealth.net data:;" + } + end + + pipeline :api do + plug :accepts, ["json"] + end + + scope "/", CaloriWeb do + pipe_through :browser + + live_session :default do + live "/", AboutLive, :index + live "/home", AboutLive, :index + live "/about", AboutLive, :index + end + end + + # Other scopes may use custom stacks. + # scope "/api", CaloriWeb do + # pipe_through :api + # end + + # Enable LiveDashboard and Swoosh mailbox preview in development + if Application.compile_env(:calori, :dev_routes) do + # If you want to use the LiveDashboard in production, you should put + # it behind authentication and allow only admins to access it. + # If your application does not have an admins-only section yet, + # you can use Plug.BasicAuth to set up some basic authentication + # as long as you are also using SSL (which you should anyway). + import Phoenix.LiveDashboard.Router + + scope "/dev" do + pipe_through :browser + + live_dashboard "/dashboard", metrics: CaloriWeb.Telemetry + forward "/mailbox", Plug.Swoosh.MailboxPreview + end + end +end diff --git a/lib/calori_web/telemetry.ex b/lib/calori_web/telemetry.ex new file mode 100644 index 0000000..3ff7082 --- /dev/null +++ b/lib/calori_web/telemetry.ex @@ -0,0 +1,69 @@ +defmodule CaloriWeb.Telemetry do + use Supervisor + import Telemetry.Metrics + + def start_link(arg) do + Supervisor.start_link(__MODULE__, arg, name: __MODULE__) + end + + @impl true + def init(_arg) do + children = [ + # Telemetry poller will execute the given period measurements + # every 10_000ms. Learn more here: https://hexdocs.pm/telemetry_metrics + {:telemetry_poller, measurements: periodic_measurements(), period: 10_000} + # Add reporters as children of your supervision tree. + # {Telemetry.Metrics.ConsoleReporter, metrics: metrics()} + ] + + Supervisor.init(children, strategy: :one_for_one) + end + + def metrics do + [ + # Phoenix Metrics + summary("phoenix.endpoint.start.system_time", + unit: {:native, :millisecond} + ), + summary("phoenix.endpoint.stop.duration", + unit: {:native, :millisecond} + ), + summary("phoenix.router_dispatch.start.system_time", + tags: [:route], + unit: {:native, :millisecond} + ), + summary("phoenix.router_dispatch.exception.duration", + tags: [:route], + unit: {:native, :millisecond} + ), + summary("phoenix.router_dispatch.stop.duration", + tags: [:route], + unit: {:native, :millisecond} + ), + summary("phoenix.socket_connected.duration", + unit: {:native, :millisecond} + ), + summary("phoenix.channel_joined.duration", + unit: {:native, :millisecond} + ), + summary("phoenix.channel_handled_in.duration", + tags: [:event], + unit: {:native, :millisecond} + ), + + # VM Metrics + summary("vm.memory.total", unit: {:byte, :kilobyte}), + summary("vm.total_run_queue_lengths.total"), + summary("vm.total_run_queue_lengths.cpu"), + summary("vm.total_run_queue_lengths.io") + ] + end + + defp periodic_measurements do + [ + # A module, function and arguments to be invoked periodically. + # This function must call :telemetry.execute/3 and a metric must be added above. + # {CaloriWeb, :count_users, []} + ] + end +end diff --git a/lib/config_provider/aws_secrets_manager.ex b/lib/config_provider/aws_secrets_manager.ex new file mode 100644 index 0000000..dfbb56a --- /dev/null +++ b/lib/config_provider/aws_secrets_manager.ex @@ -0,0 +1,99 @@ +defmodule Calori.AwsSecretsManagerProvider do + @moduledoc """ + https://hexdocs.pm/elixir/1.14.0-rc.1/Config.Provider.html + + Fetch secrets from AWS Secrets Manager, then load those secrets into configs. + + Similar examples: + - https://github.com/Adzz/gcp_secret_provider/blob/master/lib/gcp_secret_provider.ex + - https://github.com/sevenmind/vault_config_provider + """ + @behaviour Config.Provider + + require Logger + + alias ExAws.Operation.JSON + + @impl Config.Provider + def init(_path), do: [] + + @doc """ + load/2. + + Args: + - config is the current config + - opts is just the return value of init/1. + + Calls out to AWS Secrets Manager, parses the JSON response, sets configs to parsed response. + """ + @impl Config.Provider + def load(config, opts) do + Logger.info("Running AWS config provider") + env = Keyword.get(config, :calori) |> Keyword.get(:env) + + if env == "local" do + Logger.info(" - No secrets retrieved, local environment") + config + else + {:ok, _} = Application.ensure_all_started(:hackney) + {:ok, _} = Application.ensure_all_started(:ex_aws) + + Logger.info(" - Retrieve secrets") + + region = System.fetch_env!("AWS_REGION") + request_opts = Keyword.merge(opts, region: region) + + secrets = fetch_aws_secret_id("calori-#{env}-secrets", request_opts) + + secret_key_base = keyword(:secret_key_base, secrets["CALORI_SECRET_KEY_BASE"]) + erlang_cookie = secrets["ERLANG_COOKIE"] |> String.to_atom() + + # Config Erlang Cookie if the node exist + node = :erlang.node() + + if node != :nonode@nohost do + :erlang.set_cookie(node, erlang_cookie) + end + + Config.Reader.merge( + config, + calori: [ + {CaloriWeb.Endpoint, secret_key_base} + ] + ) + end + end + + defp keyword(key_name, value) do + Keyword.new([{key_name, value}]) + end + + defp fetch_aws_secret_id(secret_id, opts) do + secret_id + |> build_request() + |> ExAws.request(opts) + |> parse_secrets() + end + + defp build_request(secret_name) do + JSON.new( + :secretsmanager, + %{ + data: %{"SecretId" => secret_name}, + headers: [ + {"x-amz-target", "secretsmanager.GetSecretValue"}, + {"content-type", "application/x-amz-json-1.1"} + ] + } + ) + end + + defp parse_secrets({:ok, %{"SecretString" => json_secret}}) do + Jason.decode!(json_secret) + end + + defp parse_secrets({:error, {exception, reason}}) do + Logger.error("#{inspect(exception)}: #{inspect(reason)}") + %{} + end +end diff --git a/mix.exs b/mix.exs new file mode 100644 index 0000000..bfcb015 --- /dev/null +++ b/mix.exs @@ -0,0 +1,100 @@ +defmodule Calori.MixProject do + use Mix.Project + + def project do + [ + app: :calori, + version: "0.1.0", + elixir: "~> 1.14", + elixirc_paths: elixirc_paths(Mix.env()), + start_permanent: Mix.env() == :prod, + aliases: aliases(), + deps: deps(), + compilers: Mix.compilers() ++ [:gen_appup, :appup], + releases: [ + calori: [ + steps: [:assemble, &Jellyfish.Releases.Copy.relfile/1, :tar], + config_providers: [ + {Calori.AwsSecretsManagerProvider, nil} + ] + ] + ], + dialyzer: [ + plt_add_apps: [:ex_unit, :mix], + plt_file: {:no_warn, "priv/plts/dialyzer.plt"} + ] + ] + end + + # Configuration for the OTP application. + # + # Type `mix help compile.app` for more information. + def application do + [ + mod: {Calori.Application, []}, + extra_applications: [:logger, :runtime_tools] + ] + end + + # Specifies which paths to compile per environment. + defp elixirc_paths(:test), do: ["lib", "test/support"] + defp elixirc_paths(_), do: ["lib"] + + # Specifies your project dependencies. + # + # Type `mix help deps` for examples and options. + defp deps do + [ + {:phoenix, "~> 1.7.12"}, + {:phoenix_html, "~> 4.0"}, + {:phoenix_live_reload, "~> 1.2", only: :dev}, + {:phoenix_live_view, "~> 0.20.2"}, + {:floki, ">= 0.30.0", only: :test}, + {:phoenix_live_dashboard, "~> 0.8.3"}, + {:esbuild, "~> 0.8", runtime: Mix.env() == :dev}, + {:tailwind, "~> 0.2", runtime: Mix.env() == :dev}, + {:heroicons, + github: "tailwindlabs/heroicons", + tag: "v2.1.1", + sparse: "optimized", + app: false, + compile: false, + depth: 1}, + {:swoosh, "~> 1.5"}, + {:finch, "~> 0.13"}, + {:telemetry_metrics, "~> 1.0"}, + {:telemetry_poller, "~> 1.0"}, + {:gettext, "~> 0.20"}, + {:jason, "~> 1.2"}, + {:dns_cluster, "~> 0.1.1"}, + {:bandit, "~> 1.2"}, + {:jellyfish, "~> 0.1.2"}, + {:sobelow, "~> 0.13", only: [:dev, :test], runtime: false}, + {:credo, "~> 1.7", only: [:dev, :test], runtime: false}, + {:dialyxir, "~> 1.4", only: [:dev, :test], runtime: false}, + {:mix_audit, "~> 2.1", only: [:dev, :test], runtime: false}, + {:ex_aws, "~> 2.1"}, + {:ex_aws_s3, "~> 2.0"}, + {:hackney, "~> 1.20"} + ] + end + + # Aliases are shortcuts or tasks specific to the current project. + # For example, to install project dependencies and perform other setup tasks, run: + # + # $ mix setup + # + # See the documentation for `Mix` for more info on aliases. + defp aliases do + [ + setup: ["deps.get", "assets.setup", "assets.build"], + "assets.setup": ["tailwind.install --if-missing", "esbuild.install --if-missing"], + "assets.build": ["tailwind calori", "esbuild calori"], + "assets.deploy": [ + "tailwind calori --minify", + "esbuild calori --minify", + "phx.digest" + ] + ] + end +end diff --git a/mix.lock b/mix.lock new file mode 100644 index 0000000..5f05a2f --- /dev/null +++ b/mix.lock @@ -0,0 +1,54 @@ +%{ + "bandit": {:hex, :bandit, "1.5.0", "3bc864a0da7f013ad3713a7f550c6a6ec0e19b8d8715ec678256a0dc197d5539", [:mix], [{:hpax, "~> 0.1.1", [hex: :hpax, repo: "hexpm", optional: false]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}, {:thousand_island, "~> 1.0", [hex: :thousand_island, repo: "hexpm", optional: false]}, {:websock, "~> 0.5", [hex: :websock, repo: "hexpm", optional: false]}], "hexpm", "92d18d9a7228a597e0d4661ef69a874ea82d63ff49c7d801a5c68cb18ebbbd72"}, + "bunt": {:hex, :bunt, "1.0.0", "081c2c665f086849e6d57900292b3a161727ab40431219529f13c4ddcf3e7a44", [:mix], [], "hexpm", "dc5f86aa08a5f6fa6b8096f0735c4e76d54ae5c9fa2c143e5a1fc7c1cd9bb6b5"}, + "castore": {:hex, :castore, "1.0.7", "b651241514e5f6956028147fe6637f7ac13802537e895a724f90bf3e36ddd1dd", [:mix], [], "hexpm", "da7785a4b0d2a021cd1292a60875a784b6caef71e76bf4917bdee1f390455cf5"}, + "certifi": {:hex, :certifi, "2.12.0", "2d1cca2ec95f59643862af91f001478c9863c2ac9cb6e2f89780bfd8de987329", [:rebar3], [], "hexpm", "ee68d85df22e554040cdb4be100f33873ac6051387baf6a8f6ce82272340ff1c"}, + "credo": {:hex, :credo, "1.7.6", "b8f14011a5443f2839b04def0b252300842ce7388f3af177157c86da18dfbeea", [:mix], [{:bunt, "~> 0.2.1 or ~> 1.0", [hex: :bunt, repo: "hexpm", optional: false]}, {:file_system, "~> 0.2 or ~> 1.0", [hex: :file_system, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "146f347fb9f8cbc5f7e39e3f22f70acbef51d441baa6d10169dd604bfbc55296"}, + "dialyxir": {:hex, :dialyxir, "1.4.3", "edd0124f358f0b9e95bfe53a9fcf806d615d8f838e2202a9f430d59566b6b53b", [:mix], [{:erlex, ">= 0.2.6", [hex: :erlex, repo: "hexpm", optional: false]}], "hexpm", "bf2cfb75cd5c5006bec30141b131663299c661a864ec7fbbc72dfa557487a986"}, + "dns_cluster": {:hex, :dns_cluster, "0.1.3", "0bc20a2c88ed6cc494f2964075c359f8c2d00e1bf25518a6a6c7fd277c9b0c66", [:mix], [], "hexpm", "46cb7c4a1b3e52c7ad4cbe33ca5079fbde4840dedeafca2baf77996c2da1bc33"}, + "erlex": {:hex, :erlex, "0.2.6", "c7987d15e899c7a2f34f5420d2a2ea0d659682c06ac607572df55a43753aa12e", [:mix], [], "hexpm", "2ed2e25711feb44d52b17d2780eabf998452f6efda104877a3881c2f8c0c0c75"}, + "esbuild": {:hex, :esbuild, "0.8.1", "0cbf919f0eccb136d2eeef0df49c4acf55336de864e63594adcea3814f3edf41", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}, {:jason, "~> 1.4", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "25fc876a67c13cb0a776e7b5d7974851556baeda2085296c14ab48555ea7560f"}, + "ex_aws": {:hex, :ex_aws, "2.5.3", "9c2d05ba0c057395b12c7b5ca6267d14cdaec1d8e65bdf6481fe1fd245accfb4", [:mix], [{:configparser_ex, "~> 4.0", [hex: :configparser_ex, repo: "hexpm", optional: true]}, {:hackney, "~> 1.16", [hex: :hackney, repo: "hexpm", optional: true]}, {:jason, "~> 1.1", [hex: :jason, repo: "hexpm", optional: true]}, {:jsx, "~> 2.8 or ~> 3.0", [hex: :jsx, repo: "hexpm", optional: true]}, {:mime, "~> 1.2 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:sweet_xml, "~> 0.7", [hex: :sweet_xml, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "67115f1d399d7ec4d191812ee565c6106cb4b1bbf19a9d4db06f265fd87da97e"}, + "ex_aws_s3": {:hex, :ex_aws_s3, "2.5.3", "422468e5c3e1a4da5298e66c3468b465cfd354b842e512cb1f6fbbe4e2f5bdaf", [:mix], [{:ex_aws, "~> 2.0", [hex: :ex_aws, repo: "hexpm", optional: false]}, {:sweet_xml, ">= 0.0.0", [hex: :sweet_xml, repo: "hexpm", optional: true]}], "hexpm", "4f09dd372cc386550e484808c5ac5027766c8d0cd8271ccc578b82ee6ef4f3b8"}, + "expo": {:hex, :expo, "0.5.2", "beba786aab8e3c5431813d7a44b828e7b922bfa431d6bfbada0904535342efe2", [:mix], [], "hexpm", "8c9bfa06ca017c9cb4020fabe980bc7fdb1aaec059fd004c2ab3bff03b1c599c"}, + "file_system": {:hex, :file_system, "1.0.0", "b689cc7dcee665f774de94b5a832e578bd7963c8e637ef940cd44327db7de2cd", [:mix], [], "hexpm", "6752092d66aec5a10e662aefeed8ddb9531d79db0bc145bb8c40325ca1d8536d"}, + "finch": {:hex, :finch, "0.18.0", "944ac7d34d0bd2ac8998f79f7a811b21d87d911e77a786bc5810adb75632ada4", [:mix], [{:castore, "~> 0.1 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: false]}, {:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mint, "~> 1.3", [hex: :mint, repo: "hexpm", optional: false]}, {:nimble_options, "~> 0.4 or ~> 1.0", [hex: :nimble_options, repo: "hexpm", optional: false]}, {:nimble_pool, "~> 0.2.6 or ~> 1.0", [hex: :nimble_pool, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "69f5045b042e531e53edc2574f15e25e735b522c37e2ddb766e15b979e03aa65"}, + "floki": {:hex, :floki, "0.36.2", "a7da0193538c93f937714a6704369711998a51a6164a222d710ebd54020aa7a3", [:mix], [], "hexpm", "a8766c0bc92f074e5cb36c4f9961982eda84c5d2b8e979ca67f5c268ec8ed580"}, + "gettext": {:hex, :gettext, "0.24.0", "6f4d90ac5f3111673cbefc4ebee96fe5f37a114861ab8c7b7d5b30a1108ce6d8", [:mix], [{:expo, "~> 0.5.1", [hex: :expo, repo: "hexpm", optional: false]}], "hexpm", "bdf75cdfcbe9e4622dd18e034b227d77dd17f0f133853a1c73b97b3d6c770e8b"}, + "hackney": {:hex, :hackney, "1.20.1", "8d97aec62ddddd757d128bfd1df6c5861093419f8f7a4223823537bad5d064e2", [:rebar3], [{:certifi, "~> 2.12.0", [hex: :certifi, repo: "hexpm", optional: false]}, {:idna, "~> 6.1.0", [hex: :idna, repo: "hexpm", optional: false]}, {:metrics, "~> 1.0.0", [hex: :metrics, repo: "hexpm", optional: false]}, {:mimerl, "~> 1.1", [hex: :mimerl, repo: "hexpm", optional: false]}, {:parse_trans, "3.4.1", [hex: :parse_trans, repo: "hexpm", optional: false]}, {:ssl_verify_fun, "~> 1.1.0", [hex: :ssl_verify_fun, repo: "hexpm", optional: false]}, {:unicode_util_compat, "~> 0.7.0", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "fe9094e5f1a2a2c0a7d10918fee36bfec0ec2a979994cff8cfe8058cd9af38e3"}, + "heroicons": {:git, "https://github.com/tailwindlabs/heroicons.git", "88ab3a0d790e6a47404cba02800a6b25d2afae50", [tag: "v2.1.1", sparse: "optimized"]}, + "hpax": {:hex, :hpax, "0.1.2", "09a75600d9d8bbd064cdd741f21fc06fc1f4cf3d0fcc335e5aa19be1a7235c84", [:mix], [], "hexpm", "2c87843d5a23f5f16748ebe77969880e29809580efdaccd615cd3bed628a8c13"}, + "idna": {:hex, :idna, "6.1.1", "8a63070e9f7d0c62eb9d9fcb360a7de382448200fbbd1b106cc96d3d8099df8d", [:rebar3], [{:unicode_util_compat, "~> 0.7.0", [hex: :unicode_util_compat, repo: "hexpm", optional: false]}], "hexpm", "92376eb7894412ed19ac475e4a86f7b413c1b9fbb5bd16dccd57934157944cea"}, + "jason": {:hex, :jason, "1.4.1", "af1504e35f629ddcdd6addb3513c3853991f694921b1b9368b0bd32beb9f1b63", [:mix], [{:decimal, "~> 1.0 or ~> 2.0", [hex: :decimal, repo: "hexpm", optional: true]}], "hexpm", "fbb01ecdfd565b56261302f7e1fcc27c4fb8f32d56eab74db621fc154604a7a1"}, + "jellyfish": {:hex, :jellyfish, "0.1.2", "64118761f5b1cefe0385c6a8535523f0948dc5ae2d061bee0973f3ad35f1d5d3", [:mix], [], "hexpm", "46aca26f42b02dbbf7bba6c5407c46ce30f9021f494c0b0f2d67ae19f586c484"}, + "metrics": {:hex, :metrics, "1.0.1", "25f094dea2cda98213cecc3aeff09e940299d950904393b2a29d191c346a8486", [:rebar3], [], "hexpm", "69b09adddc4f74a40716ae54d140f93beb0fb8978d8636eaded0c31b6f099f16"}, + "mime": {:hex, :mime, "2.0.5", "dc34c8efd439abe6ae0343edbb8556f4d63f178594894720607772a041b04b02", [:mix], [], "hexpm", "da0d64a365c45bc9935cc5c8a7fc5e49a0e0f9932a761c55d6c52b142780a05c"}, + "mimerl": {:hex, :mimerl, "1.3.0", "d0cd9fc04b9061f82490f6581e0128379830e78535e017f7780f37fea7545726", [:rebar3], [], "hexpm", "a1e15a50d1887217de95f0b9b0793e32853f7c258a5cd227650889b38839fe9d"}, + "mint": {:hex, :mint, "1.6.0", "88a4f91cd690508a04ff1c3e28952f322528934be541844d54e0ceb765f01d5e", [:mix], [{:castore, "~> 0.1.0 or ~> 1.0", [hex: :castore, repo: "hexpm", optional: true]}, {:hpax, "~> 0.1.1 or ~> 0.2.0", [hex: :hpax, repo: "hexpm", optional: false]}], "hexpm", "3c5ae85d90a5aca0a49c0d8b67360bbe407f3b54f1030a111047ff988e8fefaa"}, + "mix_audit": {:hex, :mix_audit, "2.1.3", "c70983d5cab5dca923f9a6efe559abfb4ec3f8e87762f02bab00fa4106d17eda", [:make, :mix], [{:jason, "~> 1.1", [hex: :jason, repo: "hexpm", optional: false]}, {:yaml_elixir, "~> 2.9", [hex: :yaml_elixir, repo: "hexpm", optional: false]}], "hexpm", "8c3987100b23099aea2f2df0af4d296701efd031affb08d0746b2be9e35988ec"}, + "nimble_options": {:hex, :nimble_options, "1.1.0", "3b31a57ede9cb1502071fade751ab0c7b8dbe75a9a4c2b5bbb0943a690b63172", [:mix], [], "hexpm", "8bbbb3941af3ca9acc7835f5655ea062111c9c27bcac53e004460dfd19008a99"}, + "nimble_pool": {:hex, :nimble_pool, "1.1.0", "bf9c29fbdcba3564a8b800d1eeb5a3c58f36e1e11d7b7fb2e084a643f645f06b", [:mix], [], "hexpm", "af2e4e6b34197db81f7aad230c1118eac993acc0dae6bc83bac0126d4ae0813a"}, + "parse_trans": {:hex, :parse_trans, "3.4.1", "6e6aa8167cb44cc8f39441d05193be6e6f4e7c2946cb2759f015f8c56b76e5ff", [:rebar3], [], "hexpm", "620a406ce75dada827b82e453c19cf06776be266f5a67cff34e1ef2cbb60e49a"}, + "phoenix": {:hex, :phoenix, "1.7.12", "1cc589e0eab99f593a8aa38ec45f15d25297dd6187ee801c8de8947090b5a9d3", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix_pubsub, "~> 2.1", [hex: :phoenix_pubsub, repo: "hexpm", optional: false]}, {:phoenix_template, "~> 1.0", [hex: :phoenix_template, repo: "hexpm", optional: false]}, {:phoenix_view, "~> 2.0", [hex: :phoenix_view, repo: "hexpm", optional: true]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.7", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:plug_crypto, "~> 1.2 or ~> 2.0", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}, {:websock_adapter, "~> 0.5.3", [hex: :websock_adapter, repo: "hexpm", optional: false]}], "hexpm", "d646192fbade9f485b01bc9920c139bfdd19d0f8df3d73fd8eaf2dfbe0d2837c"}, + "phoenix_html": {:hex, :phoenix_html, "4.1.1", "4c064fd3873d12ebb1388425a8f2a19348cef56e7289e1998e2d2fa758aa982e", [:mix], [], "hexpm", "f2f2df5a72bc9a2f510b21497fd7d2b86d932ec0598f0210fed4114adc546c6f"}, + "phoenix_live_dashboard": {:hex, :phoenix_live_dashboard, "0.8.3", "7ff51c9b6609470f681fbea20578dede0e548302b0c8bdf338b5a753a4f045bf", [:mix], [{:ecto, "~> 3.6.2 or ~> 3.7", [hex: :ecto, repo: "hexpm", optional: true]}, {:ecto_mysql_extras, "~> 0.5", [hex: :ecto_mysql_extras, repo: "hexpm", optional: true]}, {:ecto_psql_extras, "~> 0.7", [hex: :ecto_psql_extras, repo: "hexpm", optional: true]}, {:ecto_sqlite3_extras, "~> 1.1.7 or ~> 1.2.0", [hex: :ecto_sqlite3_extras, repo: "hexpm", optional: true]}, {:mime, "~> 1.6 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:phoenix_live_view, "~> 0.19 or ~> 1.0", [hex: :phoenix_live_view, repo: "hexpm", optional: false]}, {:telemetry_metrics, "~> 0.6 or ~> 1.0", [hex: :telemetry_metrics, repo: "hexpm", optional: false]}], "hexpm", "f9470a0a8bae4f56430a23d42f977b5a6205fdba6559d76f932b876bfaec652d"}, + "phoenix_live_reload": {:hex, :phoenix_live_reload, "1.5.3", "f2161c207fda0e4fb55165f650f7f8db23f02b29e3bff00ff7ef161d6ac1f09d", [:mix], [{:file_system, "~> 0.3 or ~> 1.0", [hex: :file_system, repo: "hexpm", optional: false]}, {:phoenix, "~> 1.4", [hex: :phoenix, repo: "hexpm", optional: false]}], "hexpm", "b4ec9cd73cb01ff1bd1cac92e045d13e7030330b74164297d1aee3907b54803c"}, + "phoenix_live_view": {:hex, :phoenix_live_view, "0.20.14", "70fa101aa0539e81bed4238777498f6215e9dda3461bdaa067cad6908110c364", [:mix], [{:floki, "~> 0.36", [hex: :floki, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: true]}, {:phoenix, "~> 1.6.15 or ~> 1.7.0", [hex: :phoenix, repo: "hexpm", optional: false]}, {:phoenix_html, "~> 3.3 or ~> 4.0", [hex: :phoenix_html, repo: "hexpm", optional: false]}, {:phoenix_template, "~> 1.0", [hex: :phoenix_template, repo: "hexpm", optional: false]}, {:phoenix_view, "~> 2.0", [hex: :phoenix_view, repo: "hexpm", optional: true]}, {:plug, "~> 1.15", [hex: :plug, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.2 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "82f6d006c5264f979ed5eb75593d808bbe39020f20df2e78426f4f2d570e2402"}, + "phoenix_pubsub": {:hex, :phoenix_pubsub, "2.1.3", "3168d78ba41835aecad272d5e8cd51aa87a7ac9eb836eabc42f6e57538e3731d", [:mix], [], "hexpm", "bba06bc1dcfd8cb086759f0edc94a8ba2bc8896d5331a1e2c2902bf8e36ee502"}, + "phoenix_template": {:hex, :phoenix_template, "1.0.4", "e2092c132f3b5e5b2d49c96695342eb36d0ed514c5b252a77048d5969330d639", [:mix], [{:phoenix_html, "~> 2.14.2 or ~> 3.0 or ~> 4.0", [hex: :phoenix_html, repo: "hexpm", optional: true]}], "hexpm", "2c0c81f0e5c6753faf5cca2f229c9709919aba34fab866d3bc05060c9c444206"}, + "plug": {:hex, :plug, "1.15.3", "712976f504418f6dff0a3e554c40d705a9bcf89a7ccef92fc6a5ef8f16a30a97", [:mix], [{:mime, "~> 1.0 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:plug_crypto, "~> 1.1.1 or ~> 1.2 or ~> 2.0", [hex: :plug_crypto, repo: "hexpm", optional: false]}, {:telemetry, "~> 0.4.3 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "cc4365a3c010a56af402e0809208873d113e9c38c401cabd88027ef4f5c01fd2"}, + "plug_crypto": {:hex, :plug_crypto, "2.1.0", "f44309c2b06d249c27c8d3f65cfe08158ade08418cf540fd4f72d4d6863abb7b", [:mix], [], "hexpm", "131216a4b030b8f8ce0f26038bc4421ae60e4bb95c5cf5395e1421437824c4fa"}, + "sobelow": {:hex, :sobelow, "0.13.0", "218afe9075904793f5c64b8837cc356e493d88fddde126a463839351870b8d1e", [:mix], [{:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}], "hexpm", "cd6e9026b85fc35d7529da14f95e85a078d9dd1907a9097b3ba6ac7ebbe34a0d"}, + "ssl_verify_fun": {:hex, :ssl_verify_fun, "1.1.7", "354c321cf377240c7b8716899e182ce4890c5938111a1296add3ec74cf1715df", [:make, :mix, :rebar3], [], "hexpm", "fe4c190e8f37401d30167c8c405eda19469f34577987c76dde613e838bbc67f8"}, + "swoosh": {:hex, :swoosh, "1.16.5", "5742f24c4d081671ebe87d8e7f6595cf75205d7f808cc5d55b09e4598b583413", [:mix], [{:bandit, ">= 1.0.0", [hex: :bandit, repo: "hexpm", optional: true]}, {:cowboy, "~> 1.1 or ~> 2.4", [hex: :cowboy, repo: "hexpm", optional: true]}, {:ex_aws, "~> 2.1", [hex: :ex_aws, repo: "hexpm", optional: true]}, {:finch, "~> 0.6", [hex: :finch, repo: "hexpm", optional: true]}, {:gen_smtp, "~> 0.13 or ~> 1.0", [hex: :gen_smtp, repo: "hexpm", optional: true]}, {:hackney, "~> 1.9", [hex: :hackney, repo: "hexpm", optional: true]}, {:jason, "~> 1.0", [hex: :jason, repo: "hexpm", optional: false]}, {:mail, "~> 0.2", [hex: :mail, repo: "hexpm", optional: true]}, {:mime, "~> 1.1 or ~> 2.0", [hex: :mime, repo: "hexpm", optional: false]}, {:mua, "~> 0.1.0", [hex: :mua, repo: "hexpm", optional: true]}, {:multipart, "~> 0.4", [hex: :multipart, repo: "hexpm", optional: true]}, {:plug, "~> 1.9", [hex: :plug, repo: "hexpm", optional: true]}, {:plug_cowboy, ">= 1.0.0", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:req, "~> 0.4 or ~> 1.0", [hex: :req, repo: "hexpm", optional: true]}, {:telemetry, "~> 0.4.2 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "b2324cf696b09ee52e5e1049dcc77880a11fe618a381e2df1c5ca5d69c380eb0"}, + "tailwind": {:hex, :tailwind, "0.2.2", "9e27288b568ede1d88517e8c61259bc214a12d7eed271e102db4c93fcca9b2cd", [:mix], [{:castore, ">= 0.0.0", [hex: :castore, repo: "hexpm", optional: false]}], "hexpm", "ccfb5025179ea307f7f899d1bb3905cd0ac9f687ed77feebc8f67bdca78565c4"}, + "telemetry": {:hex, :telemetry, "1.2.1", "68fdfe8d8f05a8428483a97d7aab2f268aaff24b49e0f599faa091f1d4e7f61c", [:rebar3], [], "hexpm", "dad9ce9d8effc621708f99eac538ef1cbe05d6a874dd741de2e689c47feafed5"}, + "telemetry_metrics": {:hex, :telemetry_metrics, "1.0.0", "29f5f84991ca98b8eb02fc208b2e6de7c95f8bb2294ef244a176675adc7775df", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "f23713b3847286a534e005126d4c959ebcca68ae9582118ce436b521d1d47d5d"}, + "telemetry_poller": {:hex, :telemetry_poller, "1.1.0", "58fa7c216257291caaf8d05678c8d01bd45f4bdbc1286838a28c4bb62ef32999", [:rebar3], [{:telemetry, "~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "9eb9d9cbfd81cbd7cdd24682f8711b6e2b691289a0de6826e58452f28c103c8f"}, + "thousand_island": {:hex, :thousand_island, "1.3.5", "6022b6338f1635b3d32406ff98d68b843ba73b3aa95cfc27154223244f3a6ca5", [:mix], [{:telemetry, "~> 0.4 or ~> 1.0", [hex: :telemetry, repo: "hexpm", optional: false]}], "hexpm", "2be6954916fdfe4756af3239fb6b6d75d0b8063b5df03ba76fd8a4c87849e180"}, + "unicode_util_compat": {:hex, :unicode_util_compat, "0.7.0", "bc84380c9ab48177092f43ac89e4dfa2c6d62b40b8bd132b1059ecc7232f9a78", [:rebar3], [], "hexpm", "25eee6d67df61960cf6a794239566599b09e17e668d3700247bc498638152521"}, + "websock": {:hex, :websock, "0.5.3", "2f69a6ebe810328555b6fe5c831a851f485e303a7c8ce6c5f675abeb20ebdadc", [:mix], [], "hexpm", "6105453d7fac22c712ad66fab1d45abdf049868f253cf719b625151460b8b453"}, + "websock_adapter": {:hex, :websock_adapter, "0.5.6", "0437fe56e093fd4ac422de33bf8fc89f7bc1416a3f2d732d8b2c8fd54792fe60", [:mix], [{:bandit, ">= 0.6.0", [hex: :bandit, repo: "hexpm", optional: true]}, {:plug, "~> 1.14", [hex: :plug, repo: "hexpm", optional: false]}, {:plug_cowboy, "~> 2.6", [hex: :plug_cowboy, repo: "hexpm", optional: true]}, {:websock, "~> 0.5", [hex: :websock, repo: "hexpm", optional: false]}], "hexpm", "e04378d26b0af627817ae84c92083b7e97aca3121196679b73c73b99d0d133ea"}, + "yamerl": {:hex, :yamerl, "0.10.0", "4ff81fee2f1f6a46f1700c0d880b24d193ddb74bd14ef42cb0bcf46e81ef2f8e", [:rebar3], [], "hexpm", "346adb2963f1051dc837a2364e4acf6eb7d80097c0f53cbdc3046ec8ec4b4e6e"}, + "yaml_elixir": {:hex, :yaml_elixir, "2.9.0", "9a256da867b37b8d2c1ffd5d9de373a4fda77a32a45b452f1708508ba7bbcb53", [:mix], [{:yamerl, "~> 0.10", [hex: :yamerl, repo: "hexpm", optional: false]}], "hexpm", "0cb0e7d4c56f5e99a6253ed1a670ed0e39c13fc45a6da054033928607ac08dfc"}, +} diff --git a/priv/.gitignore b/priv/.gitignore new file mode 100644 index 0000000..4987a84 --- /dev/null +++ b/priv/.gitignore @@ -0,0 +1 @@ +plts diff --git a/priv/gettext/en/LC_MESSAGES/errors.po b/priv/gettext/en/LC_MESSAGES/errors.po new file mode 100644 index 0000000..cdec3a1 --- /dev/null +++ b/priv/gettext/en/LC_MESSAGES/errors.po @@ -0,0 +1,11 @@ +## `msgid`s in this file come from POT (.pot) files. +## +## Do not add, change, or remove `msgid`s manually here as +## they're tied to the ones in the corresponding POT file +## (with the same domain). +## +## Use `mix gettext.extract --merge` or `mix gettext.merge` +## to merge POT files into PO files. +msgid "" +msgstr "" +"Language: en\n" diff --git a/priv/gettext/errors.pot b/priv/gettext/errors.pot new file mode 100644 index 0000000..d6f47fa --- /dev/null +++ b/priv/gettext/errors.pot @@ -0,0 +1,10 @@ +## This is a PO Template file. +## +## `msgid`s here are often extracted from source code. +## Add new translations manually only if they're dynamic +## translations that can't be statically extracted. +## +## Run `mix gettext.extract` to bring this file up to +## date. Leave `msgstr`s empty as changing them here has no +## effect: edit them in PO (`.po`) files instead. + diff --git a/priv/static/favicon.ico b/priv/static/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..7f372bfc21cdd8cb47585339d5fa4d9dd424402f GIT binary patch literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^4j|0I1|(Ny7TyC=@t!V@Ar*{oFEH`~d50E!_s``s q?{G*w(7?#d#v@^nKnY_HKaYb01EZMZjMqTJ89ZJ6T-G@yGywoKK_h|y literal 0 HcmV?d00001 diff --git a/priv/static/images/logo.svg b/priv/static/images/logo.svg new file mode 100644 index 0000000..9f26bab --- /dev/null +++ b/priv/static/images/logo.svg @@ -0,0 +1,6 @@ + diff --git a/priv/static/robots.txt b/priv/static/robots.txt new file mode 100644 index 0000000..26e06b5 --- /dev/null +++ b/priv/static/robots.txt @@ -0,0 +1,5 @@ +# See https://www.robotstxt.org/robotstxt.html for documentation on how to use the robots.txt file +# +# To ban all spiders from the entire site uncomment the next two lines: +# User-agent: * +# Disallow: / diff --git a/rel/.gitignore b/rel/.gitignore new file mode 100644 index 0000000..f7172b6 --- /dev/null +++ b/rel/.gitignore @@ -0,0 +1 @@ +appups \ No newline at end of file diff --git a/rel/env.sh.eex b/rel/env.sh.eex new file mode 100644 index 0000000..4462732 --- /dev/null +++ b/rel/env.sh.eex @@ -0,0 +1,49 @@ +#!/bin/sh + +# # Sets and enables heart (recommended only in daemon mode) +# case $RELEASE_COMMAND in +# daemon*) +# HEART_COMMAND="$RELEASE_ROOT/bin/$RELEASE_NAME $RELEASE_COMMAND" +# export HEART_COMMAND +# export ELIXIR_ERL_OPTIONS="-heart" +# ;; +# *) +# ;; +# esac + +test -f /tmp/inet_tls.conf || (umask 277 + cd /tmp + cat >inet_tls.conf < + +export RELEASE_COOKIE="cookie" +export RELEASE_DISTRIBUTION=sname +export RELEASE_NODE=<%= @release.name %> diff --git a/rel/remote.vm.args.eex b/rel/remote.vm.args.eex new file mode 100644 index 0000000..983397a --- /dev/null +++ b/rel/remote.vm.args.eex @@ -0,0 +1,8 @@ +## Customize flags given to the VM: https://www.erlang.org/doc/man/erl.html +## -mode/-name/-sname/-setcookie are configured via env vars, do not set them here + +## Increase number of concurrent ports/sockets +##+Q 65536 + +## Tweak GC to run more often +##-env ERL_FULLSWEEP_AFTER 10 diff --git a/rel/vm.args.eex b/rel/vm.args.eex new file mode 100644 index 0000000..29dd73c --- /dev/null +++ b/rel/vm.args.eex @@ -0,0 +1,16 @@ +## Customize flags given to the VM: https://www.erlang.org/doc/man/erl.html +## -mode/-name/-sname/-setcookie are configured via env vars, do not set them here + +## Increase number of concurrent ports/sockets ++Q 65536 + +## Tweak GC to run more often +##-env ERL_FULLSWEEP_AFTER 10 + +## https://stressgrid.com/blog/beam_cpu_usage/ +## if you're on a platform that does burst scheduling, like EC2 in AWS. ++sbwt none ++sbwtdcpu none ++sbwtdio none + + diff --git a/test/calori_web/controllers/error_html_test.exs b/test/calori_web/controllers/error_html_test.exs new file mode 100644 index 0000000..ef58097 --- /dev/null +++ b/test/calori_web/controllers/error_html_test.exs @@ -0,0 +1,14 @@ +defmodule CaloriWeb.ErrorHTMLTest do + use CaloriWeb.ConnCase, async: true + + # Bring render_to_string/4 for testing custom views + import Phoenix.Template + + test "renders 404.html" do + assert render_to_string(CaloriWeb.ErrorHTML, "404", "html", []) == "Not Found" + end + + test "renders 500.html" do + assert render_to_string(CaloriWeb.ErrorHTML, "500", "html", []) == "Internal Server Error" + end +end diff --git a/test/calori_web/controllers/error_json_test.exs b/test/calori_web/controllers/error_json_test.exs new file mode 100644 index 0000000..1ad54bb --- /dev/null +++ b/test/calori_web/controllers/error_json_test.exs @@ -0,0 +1,12 @@ +defmodule CaloriWeb.ErrorJSONTest do + use CaloriWeb.ConnCase, async: true + + test "renders 404" do + assert CaloriWeb.ErrorJSON.render("404.json", %{}) == %{errors: %{detail: "Not Found"}} + end + + test "renders 500" do + assert CaloriWeb.ErrorJSON.render("500.json", %{}) == + %{errors: %{detail: "Internal Server Error"}} + end +end diff --git a/test/calori_web/controllers/page_controller_test.exs b/test/calori_web/controllers/page_controller_test.exs new file mode 100644 index 0000000..cd83663 --- /dev/null +++ b/test/calori_web/controllers/page_controller_test.exs @@ -0,0 +1,8 @@ +defmodule CaloriWeb.PageControllerTest do + use CaloriWeb.ConnCase + + test "GET /", %{conn: conn} do + conn = get(conn, ~p"/") + assert html_response(conn, 200) =~ "Peace of mind from prototype to production" + end +end diff --git a/test/support/conn_case.ex b/test/support/conn_case.ex new file mode 100644 index 0000000..0aa9cae --- /dev/null +++ b/test/support/conn_case.ex @@ -0,0 +1,37 @@ +defmodule CaloriWeb.ConnCase do + @moduledoc """ + This module defines the test case to be used by + tests that require setting up a connection. + + Such tests rely on `Phoenix.ConnTest` and also + import other functionality to make it easier + to build common data structures and query the data layer. + + Finally, if the test case interacts with the database, + we enable the SQL sandbox, so changes done to the database + are reverted at the end of every test. If you are using + PostgreSQL, you can even run database tests asynchronously + by setting `use CaloriWeb.ConnCase, async: true`, although + this option is not recommended for other databases. + """ + + use ExUnit.CaseTemplate + + using do + quote do + # The default endpoint for testing + @endpoint CaloriWeb.Endpoint + + use CaloriWeb, :verified_routes + + # Import conveniences for testing with connections + import Plug.Conn + import Phoenix.ConnTest + import CaloriWeb.ConnCase + end + end + + setup _tags do + {:ok, conn: Phoenix.ConnTest.build_conn()} + end +end diff --git a/test/test_helper.exs b/test/test_helper.exs new file mode 100644 index 0000000..869559e --- /dev/null +++ b/test/test_helper.exs @@ -0,0 +1 @@ +ExUnit.start()