Saurabh
Saurabh

Reputation: 73589

Changing dependencies on runtime in phoenix

I was creating a web-app in phoenix, It creates a folder of dependencies called deps, I wanted to know If I can change code of one of the dependencies and see How it affects. I tried to do it, but it doesn't executes my injected code.

Upvotes: 3

Views: 298

Answers (1)

Scott Thompson
Scott Thompson

Reputation: 23701

Did you recompile the dependencies?

From the command line of your directory, after you make the change, issue the command

mix deps.compile

This should cause your code changes to be included.

Upvotes: 2

Related Questions