elixir-phoenix-realworld-example-app icon indicating copy to clipboard operation
elixir-phoenix-realworld-example-app copied to clipboard

Exemplary real world application built with Elixir + Phoenix

Results 14 elixir-phoenix-realworld-example-app issues
Sort by recently updated
recently updated
newest added

Upgrade phoenix framework v1.4 to phoenix framework v1.5 Phoenix 1.4.x to 1.5.0 upgrade instructions https://gist.github.com/chrismccord/e53e79ef8b34adf5d8122a47db44d22f

Dependencies are Elixir, Phoenix, PostgreSQL, but Phoenix depends on Postgresql so the order isn't right The Phoenix docs say to install `mix local.hex` but that doesn't work I skip that...

I'm a postgres noob and when following the `README.md` to run this locally on my macbook. But on running the `mix ecto.create` command I get below error about a `role...

Hi! Should we wrap your example of app to docker? If you find it is useful, please do not hesitate to contact me and I create .dockerfile and other configuration...

Trying cockroachdb on 2.1 beta (v2.1.0-beta.20181015): * Cannot create a database automatically, but can migrate with ecto.migrate (expected) * Getting list of tags fails Replaced query with: ```elixir def list_tags...

Hi all, I'm trying to run this example and am getting: ``` ~/src/elixir-phoenix-realworld-example-app [master*]$ mix ecto.create ==> comeonin mkdir -p priv cc -g -O3 -Wall -I/usr/lib64/erlang/erts-10.3.5.5/include -Ic_src -fPIC -shared c_src/bcrypt_nif.c...

I noticed using different styles in different parts As stated in [this style guide](https://github.com/christopheradams/elixir_style_guide#avoid-single-pipelines) ``` # not preferred some_string |> String.downcase() # preferred String.downcase(some_string) ``` now overall code formatting looks...

![2018-08-27 19 53 53](https://user-images.githubusercontent.com/1025241/44673011-fcbafe00-aa32-11e8-957a-dcab4277c00d.png)

I believe https://github.com/gothinkster/elixir-phoenix-realworld-example-app/blob/master/lib/real_world_web/controllers/user_controller.ex#L29-L35 is redundant and confusing. There is no need to check `user` for nil and render 404.json, as Guardian already has an error handler which will be invoked...

Using the vue.js front end I had errors updating articles: https://github.com/gothinkster/elixir-phoenix-realworld-example-app/blob/master/lib/real_world_web/controllers/article_controller.ex#L66 ```elixir def update(conn, %{"id" => slug, "article" => article_params}, user) do article = slug |> Blog.get_article_by_slug!() |> Repo.preload([:author, :favorites])...