Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Fix Markdown #817

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.Zh-cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,10 +184,10 @@ cgo: exec gcc: exec: "gcc": executable file not found in %PATH%
``` bash
# 首次配置需要初始化数据库资源信息
# macOS or linux 下使用
$ ./go-admin migrate -c config/settings.dev.yml
$ ./go-admin migrate -c config/settings.yml

# ⚠️注意:windows 下使用
$ go-admin.exe migrate -c config/settings.dev.yml
$ .\go-admin.exe migrate -c config/settings.yml


# 启动项目,也可以用IDE进行调试
Expand All @@ -196,7 +196,7 @@ $ ./go-admin server -c config/settings.yml


# ⚠️注意:windows 下使用
$ go-admin.exe server -c config/settings.yml
$ .\go-admin.exe server -c config/settings.yml
```

#### sys_api 表的数据如何添加
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,17 +183,17 @@ cgo: exec gcc: exec: "gcc": executable file not found in %PATH%
``` bash
# The first configuration needs to initialize the database resource information
# Use under macOS or linux
$ ./go-admin migrate -c config/settings.dev.yml
$ ./go-admin migrate -c config/settings.yml

# ⚠️Note: Use under windows
$ go-admin.exe migrate -c config/settings.dev.yml
$ .\go-admin.exe migrate -c config/settings.yml

# Start the project, you can also use the IDE for debugging
# Use under macOS or linux
$ ./go-admin server -c config/settings.yml

# ⚠️Note: Use under windows
$ go-admin.exe server -c config/settings.yml
$ .\go-admin.exe server -c config/settings.yml
```

#### Use docker to compile and start
Expand Down