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: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -106,13 +106,13 @@ module.exports = {
106
106
```
107
107
9. Connect your cloud relational database (PostgreSQL) by copying and pasting the connection string to the variable PG_URI the file cloudModel.js located in Docketeer/server/models/.
108
108
// cloudModel.js
109
-
...
109
+
```
110
110
const { Pool } = require('pg');
111
111
112
112
// Copy and paste your PostgreSQL Connectiion URL below to connect your cloud database. Note: no need to create any tables, upon start up Docketeer will create those tables in your DB instance automatically.
113
113
114
114
const PG_URI = '';
115
-
...
115
+
```
116
116
117
117
118
118
You are all set! Now just enter the following command to start up Docketeer!
0 commit comments