Recommended example Phoenix apps?

Can you recommend any recent example Phoenix app which makes use of model associations? Unfortunately all the example apps I could google up no longer compile due to obsolete dependencies.

1 Like

Check out the hex_web app

https://github.com/thechangelog/changelog.com/

4 Likes

There are some listed in our wiki:

(If you find anymore, please add them :023:)

Many thanks! That’s a lot to study. I will take a look at them. But I think a truly minimal example would be useful as well, especially for the newbies.

1 Like

Have you got any of the Elixir the books? They really are incredibly well written - we are very lucky to have such fantastic learning material :003:

Here is a trick I use to discover more use examples of various functions.

Let’s say you need to learn how people use build_assoc. You go to github.com and search for build_assoc(

In the results page, on the left hand select “Code” and then select elixir. It will return plenty of code. Mostly phoenix apps.

This might be common sense but I recently discovered it and it helped me tremendously.

4 Likes

Perhaps this one deserves to be listed in the wiki as well https://github.com/code3-coop/carbon

Besides the already mentioned Changelog app I like too peek at

Vutuv: https://github.com/vutuv/vutuv
ClassLab: https://github.com/classlab/classlab

2 Likes