Elixir Web Framework targeting full-featured, fault tolerant applications with realtime functionality
So let's say I want to send a bunch of emails or recreate sitemap or whatever every 4 hours, how would …
elixir phoenix-frameworkI'm trying to print some debug information from one of my Controllers in my Phoenix app when the server is …
elixir phoenix-frameworkI need to be able to generate random url safe strings so I could use those in links (like in …
elixir phoenix-frameworkI mean a string is blank if it's empty or contains whitespaces only. For example, "", " " and "\n" are all blank. …
elixir phoenix-frameworkI'd like to set the title of my app in my/config/config.exs file: config :my, My.Endpoint, url: […
elixir phoenix-frameworkI'm just learning Phoenix and Elixir and I'm coming from Ruby/Rails where I work in the REPL using pry …
elixir phoenix-framework ecto iexI would like to store an array of floating point values with Ecto using Postgres. I'm using Ecto with the …
postgresql phoenix-framework ectoHow to find posts in given List of ids? This isn't working: posts = Post |> where(id: [1, 2]) |> Repo.all …
elixir phoenix-framework ectoI am trying to figure out a way to check if the params hash in a Phoenix app (using Elixir) …
elixir phoenix-framework ectoI'm going through the Programming Phoenix book and I am wondering what the difference between def and defp is. There …
elixir phoenix-framework