Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bc0b2e6

Browse files
author
Ryan Neufeld
committed
Incorporate Meghan's feedback for last large NOTES block
1 parent 779b44c commit bc0b2e6

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

databases/korma/korma.asciidoc

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,25 @@ dependencies or start a REPL using lein-try:
2222
$ lein try korma org.postgresql/postgresql
2323
----
2424

25-
[NOTE]
26-
====
27-
You'll need a running SQL database and existing table to connect to
28-
for this recipe. We suggest PostgreSQL.
2925

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].]
3233

3334
After you have PostgreSQL running (presumably on _localhost:5432_) run the following
3435
command to create a database for this recipe:
3536

3637
[source,bash]
3738
----
39+
# On Mac
3840
$ /Applications/Postgres.app/Contents/MacOS/bin/createdb learn_korma
41+
42+
# Everyone else:
43+
$ createdb learn_korma
3944
----
4045
====
4146

0 commit comments

Comments
 (0)