Elixir is an open-source, dynamic, compiled, general purpose functional programming language.
I'm trying to set my elixir-phoenix app with postgresql database to run with Docker. This is what my Dockerfile looks …
postgresql docker elixir docker-compose phoenix-frameworkI have this original migration that have already been run and sent upstream: create table(:videos) do add :url, :string …
elixir phoenix-framework ectoI have this file of GitHub action which runs tests, but now I am integrating slack notification in it. I …
github elixir github-actionsI have a test which need to set user_id to session before testing, because this action need to know …
session testing elixir phoenix-frameworkI have two template folder in my web/templates folder: > ls web/templates personal_info user What I want …
templates web-deployment elixir phoenix-frameworkLet's say I have something like: Enum.map(list, fn(x) -> String.duplicate("a", someValue * x) end) But …
function enums functional-programming elixir arityFunctions defined by defp aren't exported so I can't execute them in places other than in the module.
elixirWhat is the way to handle associations and nested forms in Phoenix framework? How would one create a form with …
elixir phoenix-framework ectoI have a Post and Comment model. One post has many comments and one comment belongs to a post. When …
elixir phoenix-framework ecto