Learnings from One Year of Building an Open Source Elixir Application
1–10 of 24 posts
Re: Learnings from One Year of Building an Open Source Elixir Application
#2Re: Learnings from One Year of Building an Open Source Elixir Application
#3Having a sign up button or perhaps context or text on the site might've been helpful...
Which means it's a poor user experience. Sorry for the trouble, I wonder if any folks have better ideas here?
Re: Learnings from One Year of Building an Open Source Elixir Application
#4Having a sign up button or perhaps context or text on the site might've been helpful...
You're completely right, it seems a little counterintuitive but one thing I learned early on while building a different community site (Designer News) was the way to build a wholesome community was to be invite only in the beginning. That and real first and last names. Which means it's a poor user experience. Sorry for the trouble, I wonder if any folks have better ideas here?
Re: Learnings from One Year of Building an Open Source Elixir Application
#5Re: Learnings from One Year of Building an Open Source Elixir Application
#6Re: Learnings from One Year of Building an Open Source Elixir Application
#7One of the interesting things about the Elixir/Phoenix community is that building your own authentication system seems to be encouraged. Even if you're using one of the plugs available (guardian?) you still have to do a ton of manual lifting.
Auth is genuinely hard, and turnkey solutions often aren't enough.
Re: Learnings from One Year of Building an Open Source Elixir Application
#8For the lazy, here is the github link from this article:
Re: Learnings from One Year of Building an Open Source Elixir Application
#9One of the interesting things about the Elixir/Phoenix community is that building your own authentication system seems to be encouraged. Even if you're using one of the plugs available (guardian?) you still have to do a ton of manual lifting.
This seems to be the case in many places outside of Rails. I know that Clojure, at least, seems to encourage implementing things yourself by way of leveraging smaller libraries and modules. Auth is genuinely hard, and turnkey solutions often aren't enough.
Re: Learnings from One Year of Building an Open Source Elixir Application
#10One of the interesting things about the Elixir/Phoenix community is that building your own authentication system seems to be encouraged. Even if you're using one of the plugs available (guardian?) you still have to do a ton of manual lifting.
If you want something like Devise from the Rails world, there is also Coherence. https://github.com/smpallen99/coherence