You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/INSTALLING.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -59,7 +59,7 @@ mix ecto.create
59
59
You can now compile and run the server:
60
60
61
61
```shell
62
-
mix phoenix.server
62
+
mix phx.server
63
63
```
64
64
65
65
You can also run your app inside IEx (Interactive Elixir) as:
@@ -80,6 +80,8 @@ mix ecto.setup
80
80
81
81
This is an alias that runs `ecto.create`, `ecto.migrate`, and `run priv/repo/seeds.exs` in succession.
82
82
83
+
You can open the file [`priv/repo/seeds.exs`](/priv/repo/seeds.exs) to see what data was seeded into your database.
84
+
83
85
### Verify it worked
84
86
85
87
Point your browser (or make a direct request) to `http://api.lvh.me:4000/users` (`lvh.me` resolves itself and all subdomains to your `localhost` accordingly). You'll get the following response (although you might have data if you seeded the database):
0 commit comments