Skip to content

Commit 02709a5

Browse files
committed
Merge pull request #219 from dstufft/update-dev-docs
Fix #190 - Document the requirement for uuid-ossp PostgreSQL extension
2 parents 760d286 + 6e8b61c commit 02709a5

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

docs/contributing.rst

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,16 @@ Finally you can setup the project:
7474
7575
$ # Create a Database
7676
$ createdb warehouse
77-
77+
7878
$ # Install the CIText extension
79-
$ psql warehouse -c "CREATE EXTENSION IF NOT EXISTS citext"
80-
79+
$ psql warehouse -c 'CREATE EXTENSION IF NOT EXISTS citext'
80+
81+
$ # Install the UUID extension
82+
$ psql warehouse -c 'CREATE EXTENSION IF NOT EXISTS "uuid-ossp"'
83+
8184
$ # Migrate the database to the latest schema
8285
$ warehouse -c dev/config.yml migrate upgrade head
83-
86+
8487
$ # Serve Warehouse at http://localhost:9000/
8588
$ warehouse -c dev/config.yml serve
8689

0 commit comments

Comments
 (0)