Skip to content

Commit 0194520

Browse files
committed
Use a more generic app name
1 parent a160438 commit 0194520

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

phoenix/specifying-the-server-port.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ If you'd like to use a different port in development, you can change it in
77
`config/dev.exs`.
88

99
```elixir
10-
config :profilex, Profilex.Web.Endpoint,
10+
config :my_app, MyApp.Web.Endpoint,
1111
http: [port: 4444],
1212
...
1313
```
@@ -16,7 +16,7 @@ Alternatively, you can allow it to be configurable from the command line
1616
with an environment variable and a fallback port.
1717

1818
```elixir
19-
config :profilex, Profilex.Web.Endpoint,
19+
config :my_app, MyApp.Web.Endpoint,
2020
http: [port: System.get_env("PORT") || 4000],
2121
...
2222
```

0 commit comments

Comments
 (0)