-
Couldn't load subscription status.
- Fork 38
GH-69 Provide get_info endpoint #82
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
Conversation
apps/aehttpclient/README.md
Outdated
| @@ -0,0 +1,21 @@ | |||
| # Aehttpclient | |||
|
|
|||
| **TODO: Add description** | |||
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.
maybe add a short description
apps/aehttpserver/config/config.exs
Outdated
|
|
||
| # Configures the endpoint | ||
| config :aehttpserver, Aehttpserver.Endpoint, | ||
| render_errors: [view: Aehttpserver.ErrorView, accepts: ~w(html json)], |
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.
we shouldn't need this
apps/aehttpserver/config/dev.exs
Outdated
|
|
||
|
|
||
| # Watch static and templates for browser reloading. | ||
| config :aehttpserver, Aehttpserver.Endpoint, |
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.
we shouldn't need this
|
|
||
| # Code reloading can be explicitly enabled under the | ||
| # :code_reloader configuration of your endpoint. | ||
| if code_reloading? do |
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.
we shouldn't need this
apps/aehttpserver/mix.exs
Outdated
| {:phoenix, "~> 1.3.0-rc"}, | ||
| {:phoenix_pubsub, "~> 1.0"}, | ||
| {:phoenix_html, "~> 2.10"}, | ||
| {:phoenix_live_reload, "~> 1.0", only: :dev}, |
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.
we shouldn't need this
apps/aehttpserver/mix.exs
Outdated
| [ | ||
| {:phoenix, "~> 1.3.0-rc"}, | ||
| {:phoenix_pubsub, "~> 1.0"}, | ||
| {:phoenix_html, "~> 2.10"}, |
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.
we shouldn't need this
apps/aehttpserver/web/web.ex
Outdated
| end | ||
| end | ||
|
|
||
| def view do |
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.
we shouldn't need this
closes #69, #41 , #52 , #53