Skip to content

Commit 2a8b34b

Browse files
authored
doc: remove double quotes from 'dataSoureName' in config file
1 parent 92e7684 commit 2a8b34b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/basic/server-installation.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ Assuming you have already prepared a database called `casdoor`, you should speci
8282

8383
```ini
8484
driverName = postgres
85-
dataSourceName = "user=postgres password=postgres host=localhost port=5432 sslmode=disable dbname=casdoor"
85+
dataSourceName = user=postgres password=postgres host=localhost port=5432 sslmode=disable dbname=casdoor
8686
dbName = casdoor
8787
```
8888

@@ -96,7 +96,7 @@ CockroachDB can also be used with the PostgreSQL driver and has the same configu
9696

9797
```ini
9898
driverName = postgres
99-
dataSourceName = "user=postgres password=postgres host=localhost port=5432 sslmode=disable dbname=casdoor serial_normalization=virtual_sequence"
99+
dataSourceName = user=postgres password=postgres host=localhost port=5432 sslmode=disable dbname=casdoor serial_normalization=virtual_sequence
100100
dbName = casdoor
101101
```
102102

@@ -110,7 +110,7 @@ To configure SQLite3, you should specify `app.conf` like this:
110110

111111
```ini
112112
driverName = sqlite
113-
dataSourceName = "file:casdoor.db?cache=shared"
113+
dataSourceName = file:casdoor.db?cache=shared
114114
dbName = casdoor
115115
```
116116

0 commit comments

Comments
 (0)