File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -22,20 +22,25 @@ dependencies or start a REPL using lein-try:
22
22
$ lein try korma org.postgresql/postgresql
23
23
----
24
24
25
- [NOTE]
26
- ====
27
- You'll need a running SQL database and existing table to connect to
28
- for this recipe. We suggest PostgreSQL.
29
25
30
- If you're a Mac user and don't have PostgreSQL installed yet, you can
31
- go here http://postgresapp.com/ for an easy to use DMG.
26
+ To follow along with this recipe, you'll need a running SQL database
27
+ and existing table to connect to. We suggest PostgreSQL footnote:[Mac
28
+ users: visit http://postgresapp.com/ to download an
29
+ easy-to-install DMG. Everyone else: find a guide for your operating
30
+ system on the
31
+ https://wiki.postgresql.org/wiki/Detailed_installation_guides[PostgreSQL
32
+ Wiki].]
32
33
33
34
After you have PostgreSQL running (presumably on _localhost:5432_) run the following
34
35
command to create a database for this recipe:
35
36
36
37
[source,bash]
37
38
----
39
+ # On Mac
38
40
$ /Applications/Postgres.app/Contents/MacOS/bin/createdb learn_korma
41
+
42
+ # Everyone else:
43
+ $ createdb learn_korma
39
44
----
40
45
====
41
46
You can’t perform that action at this time.
0 commit comments