Skip to content

Commit 915ed3c

Browse files
committed
docs: fix JSON formatting and clarify DB setup instructions
1 parent 03d30e2 commit 915ed3c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,15 @@ Continuous deployment: https://ci.simplcommerce.com
3333
- The default is configured for a local SQL Server.
3434
```json
3535
{
36-
`"DefaultConnection": "Server=.;Database=SimplCommerce;Trusted_Connection=True;TrustServerCertificate=true"`
36+
"DefaultConnection": "Server=.;Database=SimplCommerce;Trusted_Connection=True;TrustServerCertificate=true"
3737
}
38+
```
3839
- If you are using Visual Studio LocalDB, change it to:
3940
```json
4041
{
41-
`"DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=SimplCommerce;Trusted_Connection=True;TrustServerCertificate=true;MultipleActiveResultSets=true"`
42+
"DefaultConnection": "Server=(localdb)\\mssqllocaldb;Database=SimplCommerce;Trusted_Connection=True;TrustServerCertificate=true;MultipleActiveResultSets=true"
4243
}
44+
```
4345
- Ensure you have a database named `SimplCommerce` created in your SQL instance, or change the `Database` name in the connection string to match your environment.
4446
- Build the whole solution.
4547
- In Solution Explorer, make sure that SimplCommerce.WebHost is selected as the Startup Project

0 commit comments

Comments
 (0)