-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: update phoenix_analytics path in Mix.install #3
Conversation
Changed the path of phoenix_analytics from a relative external path to the local directory to ensure proper dependency loading.
Thank you for your contribution @cbuctok ! Since you are on that topic, could you please add There is a plan to build nice dev environment if this library will pick up. |
Thanks for the feedback! I'll go ahead and add |
Add `ip: {0, 0, 0, 0}` to endpoint_options
@@ -1,7 +1,7 @@ | |||
#!/usr/bin/env elixir | |||
Mix.install([ | |||
{:phoenix_playground, "~> 0.1.5"}, | |||
{:phoenix_analytics, path: "../phoenix_analytics", force: true} | |||
{:phoenix_analytics, path: ".", force: true} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tip
Nice!
@cbuctok you can target 0.1.2 for this one as well! |
* fix: router conflict with error tracker (#4) * fix: Router conflict with ErrorTracker Moved `parse_options/2` into `phoenix_analytics_dashboard` macro --------- Co-authored-by: Greg Evseev <[email protected]> * version bump * fix: update phoenix_analytics path in Mix.install (#3) * fix: update phoenix_analytics path in Mix.install Changed the path of phoenix_analytics from a relative external path to the local directory to ensure proper dependency loading. Add `ip: {0, 0, 0, 0}` to endpoint_options --------- Co-authored-by: Greg Evseev <[email protected]> --------- Co-authored-by: Greg <[email protected]> Co-authored-by: Greg Evseev <[email protected]>
Changed the path of phoenix_analytics from a relative external path to the local directory to ensure proper dependency loading.