Questions tagged [phoenix-framework]

Elixir Web Framework designed for developing robust, fault-tolerant applications with real-time features.

I encountered an issue while running mix ecto.create - Postgrex.Protocol (#PID<0.208.0>) was unable to establish a connection. Any ideas on how to troubleshoot this

While attempting to create a test Phoenix application by following the instructions on the official Phoenix website: . Upon reaching the step of actually creating the Phoenix application (i.e., running "mix phx.new myhello"), I encountered an issue where ...

Sorry, the command was unsuccessful in executing the "npm install" function due

I followed the instructions from to set up Phoenix on my Debian system, but unfortunately, I am facing issues. Whenever I try to create a new Phoenix application, I encounter the following error: abc@xyz:~$ mix phoenix.new test10 * creating test10/config ...

Bootstrap's styling for a button is not being implemented for the delete link in Phoenix

Elixir version: 1.3.2 Phoenix version: 1.2.1 NodeJS version: 4.4.6 NPM version: 3.10.6 Brunch version: 2.7.4 Operating system: Mac OSX In my current project, I am attempting to create a basic link using the link helper function provided by Phoenix. <l ...

What is the best way to implement webpack (2.x) in elixir phoenix (1.3.x) as a replacement for brunch?

Attempting to switch from brunch to webpack for developing with hot-module-replacement and access to more advanced build tools. However, struggling because most tutorials are outdated, focusing on Phoenix 1.2.x and Webpack 1.x. Appreciate any advice or gu ...

utilizing Nuxt code in Elixir/Phoenix

Overview In my previous work, I combined frontend development with nuxt and backend support from elixir/phoenix, along with nginx for reverse proxy. Looking to enhance the performance of the system, my goal is now to migrate everything to Elixir/Phoenix. ...

Avoid combining all CSS files into one app.css file; instead, include specific files manually as required

In my Elixir/Phoenix application, I utilize brunch and npm for handling CSS files. Rather than compiling all CSS files into app.css, I am interested in selectively compiling only some of them and manually including the ones that are not compiled on speci ...

Problem encountered when attempting to utilize the spread operator within .vue files in an Elixir Phoenix 1.3 application

I'm facing an issue while building Vue.js components that involve using the spread operator to map states from Vuex within my Phoenix 1.3 application. The JavaScript compile errors I encountered are causing some roadblocks: 26 | }, 27 | computed: ...