Skip to content

Commit f5f39c9

Browse files
committed
Fixed MultiTenancy disable class name and invalid enter chars.
1 parent 8b063e3 commit f5f39c9

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

docs/en/Getting-Started-Angular.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,11 @@ Right click the **.Web.Host** project and select "**Set as StartUp project**": T
3939

4040
Open **appsettings.json** in **.Web.Host** project and change the **Default** connection string if you want:
4141

42-
"ConnectionStrings": {
43-
"Default": "Server=localhost; Database=PhoneBookDemoDb; Trusted_Connection=True;"
44-
}
42+
```json
43+
"ConnectionStrings": {
44+
"Default": "Server=localhost; Database=PhoneBookDemoDb; Trusted_Connection=True;"
45+
}
46+
```
4547

4648
#### Migrations
4749

@@ -65,7 +67,7 @@ You can use EF console commands for development and Migrator.exe for production.
6567

6668
### Multi-Tenancy
6769

68-
ASP.NET Zero supports multi-tenant and single-tenant applications. Multi-tenancy is **enabled by default**. If you don't have an idea about multi-tenancy, you can read it on [wikipedia.org/wiki/Multitenancy](https://en.wikipedia.org/wiki/Multitenancy). If you don't want to create a multi-tenant application, you can **disable** it by setting **AbpZeroTemplateConsts.MultiTenancyEnabled** to false in the ***.Core.Shared** project.
70+
ASP.NET Zero supports multi-tenant and single-tenant applications. Multi-tenancy is **enabled by default**. If you don't have an idea about multi-tenancy, you can read it on [wikipedia.org/wiki/Multitenancy](https://en.wikipedia.org/wiki/Multitenancy). If you don't want to create a multi-tenant application, you can **disable** it by setting **PhoneBookDemoConsts.MultiTenancyEnabled** to false in the ***.Core.Shared** project.
6971

7072
### Run API Host
7173

@@ -100,22 +102,17 @@ Navigate to the Angular folder, open a command line and run the following comman
100102

101103
yarn
102104

103-
**Note:** If you downloaded merged project then you should run commands on Host folder not Angular.
105+
**Note:** If you downloaded merged project then you should run commands on `Host` folder not `Angular` folder.
104106

105-
We suggest to use [yarn](https://yarnpkg.com/) because npm has some
106-
problems. It is slow and can not consistently resolve dependencies, yarn
107-
solves those problems and it is compatible to npm as well.
107+
We suggest to use [yarn](https://yarnpkg.com/) because NPM has some problems. It is slow and can not consistently resolve dependencies, yarn solves those problems and it is compatible to NPM as well.
108108

109109
### Running The Application
110110

111111
Open the command line and run the following command:
112112

113113
npm start
114114

115-
Once the application compiled, you can browse <http://localhost:4200> in
116-
your browser. ASP.NET Zero also has also **HMR** (Hot Module Replacement)
117-
enabled. You can use the following command (instead of npm start) to
118-
enable HMR on development time:
115+
Once the application compiled, you can browse <http://localhost:4200> in your browser. ASP.NET Zero also has also **HMR** (Hot Module Replacement) enabled. You can use the following command (instead of NPM start) to enable HMR on development time:
119116

120117
npm run hmr
121118

0 commit comments

Comments
 (0)