1
0
mirror of https://github.com/jbranchaud/til synced 2026-01-02 22:58:01 +00:00

Use a more generic app name

This commit is contained in:
jbranchaud
2017-03-10 21:33:03 -06:00
parent a160438f92
commit 0194520d78

View File

@@ -7,7 +7,7 @@ If you'd like to use a different port in development, you can change it in
`config/dev.exs`.
```elixir
config :profilex, Profilex.Web.Endpoint,
config :my_app, MyApp.Web.Endpoint,
http: [port: 4444],
...
```
@@ -16,7 +16,7 @@ Alternatively, you can allow it to be configurable from the command line
with an environment variable and a fallback port.
```elixir
config :profilex, Profilex.Web.Endpoint,
config :my_app, MyApp.Web.Endpoint,
http: [port: System.get_env("PORT") || 4000],
...
```