We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 760d286 + 6e8b61c commit 02709a5Copy full SHA for 02709a5
docs/contributing.rst
@@ -74,13 +74,16 @@ Finally you can setup the project:
74
75
$ # Create a Database
76
$ createdb warehouse
77
-
+
78
$ # Install the CIText extension
79
- $ psql warehouse -c "CREATE EXTENSION IF NOT EXISTS citext"
80
+ $ psql warehouse -c 'CREATE EXTENSION IF NOT EXISTS citext'
81
+ $ # Install the UUID extension
82
+ $ psql warehouse -c 'CREATE EXTENSION IF NOT EXISTS "uuid-ossp"'
83
84
$ # Migrate the database to the latest schema
85
$ warehouse -c dev/config.yml migrate upgrade head
86
87
$ # Serve Warehouse at http://localhost:9000/
88
$ warehouse -c dev/config.yml serve
89
0 commit comments