Topic: Phoenix
How to add CSS rules only in the test env in your Phoenix app
Certain CSS styles might cause problems in your browser-based tests, so you might want to add some CSS rules that turn off those styles, but only in the test environment.
Speed up the compilation of Elixir projects that use Gettext
With those two small configuration fixes, we managed to make our Phoenix project compile 3 times faster.
Link Phoenix debug page stack trace to your editor
You can configure Plug.Debugger to generate links that open the line that caused the error in your editor.
CSRF protection in Phoenix
If your Phoenix app uses basic authentication or cookies for authentication, you need to protect it from cross-site request forgery.
Hello World web app in Elixir, part 3 - Phoenix
In the process of learning Elixir I am writing the same simple web app three times, using three different tools. This is the third part - the variant using the web framework Phoenix.