Skip to content

Commit ce9ed39

Browse files
committed
readme update
1 parent 48c135c commit ce9ed39

2 files changed

Lines changed: 83 additions & 17 deletions

File tree

README.md

Lines changed: 40 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,6 @@ A simple management project template written using Blazor and MudBlazor.
66

77
---
88

9-
#### Credentials:
10-
11-
Username:BlazorAdmin
12-
13-
Password:BlazorAdmin
14-
15-
---
16-
179
#### Features:
1810

1911
- Support Interactive Auto Render Mode
@@ -45,3 +37,43 @@ Password:BlazorAdmin
4537
- MudBlazor
4638

4739
- Entity Framework Core
40+
41+
---
42+
43+
#### Getting Started:
44+
45+
##### Run the Project:
46+
47+
1. Clone the repository
48+
2. Navigate to the src/BlazorAdmin directory
49+
3. Run `dotnet restore` to restore dependencies
50+
4. Run `dotnet run --project BlazorAdmin.Web` to start the application
51+
5. Open your browser and navigate to `https://localhost:37219`
52+
53+
##### Credentials:
54+
55+
Username:BlazorAdmin
56+
57+
Password:BlazorAdmin
58+
59+
##### Create New Project from Template:
60+
61+
1. Enter the folder:
62+
```bash
63+
cd src
64+
```
65+
66+
2. Install the template:
67+
```bash
68+
dotnet new install .
69+
```
70+
71+
3. Create a new project in other folder:
72+
```bash
73+
dotnet new batpl -n YourProjectName
74+
```
75+
76+
4. Uninstall the template in src folder:
77+
```bash
78+
dotnet new uninstall .
79+
```

README_zh.md

Lines changed: 43 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,7 @@
22

33
一个使用 Blazor 和 MudBlazor 编写的简单管理项目模板。
44

5-
---
6-
7-
#### 登录凭据:
8-
9-
用户名:BlazorAdmin
10-
11-
密码:BlazorAdmin
5+
[English](README.md)
126

137
---
148

@@ -30,7 +24,7 @@
3024

3125
- 模块化设计
3226

33-
- 添加Quartz支持
27+
- Quartz 支持
3428

3529
---
3630

@@ -42,4 +36,44 @@
4236

4337
- MudBlazor
4438

45-
- Entity Framework Core
39+
- Entity Framework Core
40+
41+
---
42+
43+
#### 快速开始:
44+
45+
##### 运行项目:
46+
47+
1. 克隆仓库
48+
2. 进入 src/BlazorAdmin 目录
49+
3. 运行 `dotnet restore` 恢复依赖
50+
4. 运行 `dotnet run --project BlazorAdmin.Web` 启动应用
51+
5. 打开浏览器访问 `https://localhost:37219`
52+
53+
##### 登录凭据:
54+
55+
用户名:BlazorAdmin
56+
57+
密码:BlazorAdmin
58+
59+
##### 从模板创建新项目:
60+
61+
1. 进入目录:
62+
```bash
63+
cd src
64+
```
65+
66+
2. 安装模板:
67+
```bash
68+
dotnet new install .
69+
```
70+
71+
3. 在其他目录创建新项目:
72+
```bash
73+
dotnet new batpl -n 你的项目名称
74+
```
75+
76+
4. 在 src 目录卸载模板:
77+
```bash
78+
dotnet new uninstall .
79+
```

0 commit comments

Comments
 (0)