Skip to content

Commit 7d6a04e

Browse files
committed
update docs
1 parent b7bc3bc commit 7d6a04e

File tree

3 files changed

+34
-18
lines changed

3 files changed

+34
-18
lines changed

docs/.vuepress/navbar.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export const myNavbar = defineNavbarConfig([
4242
]
4343
},
4444
{
45-
text: 'v1.0.5',
45+
text: 'v1.1.0',
4646
items: [
4747
{
4848
text: '线上演示',

docs/backend/deploy/Docker.md

Lines changed: 24 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,22 +31,44 @@ title: Docker 部署
3131

3232
在项目根目录中打开终端,执行以下命令
3333

34-
::: note
34+
::: warning
3535
如果容器要在本地启动,需要将 `.env` 中的 `127.0.0.1` 更改为 `host.docker.internal`
3636
:::
3737

38+
::: tabs#dockerfile
39+
@tab fba
40+
3841
```shell:no-line-numbers
3942
docker build -f Dockerfile -t fba_backend_independent .
4043
```
4144

45+
@tab celery
46+
47+
```shell:no-line-numbers
48+
docker build --build-arg SERVER_TYPE=celery -t fba_celery_independent .
49+
```
50+
51+
:::
52+
4253
4. 启动容器
4354

4455
由于构建不包含数据库,请确保本地已安装并启动相关数据库(mysql / postgresql、redis)
4556

57+
::: tabs#dockerfile
58+
@tab fba
59+
4660
```shell:no-line-numbers
4761
docker run -d -p 8000:8000 --name fba_server fba_backend_independent
4862
```
4963

64+
@tab celery
65+
66+
```shell:no-line-numbers
67+
docker run -d -p 8555:8555 --name fba_celery fba_celery_independent
68+
```
69+
70+
:::
71+
5072
::::
5173

5274
## 服务器部署
@@ -56,7 +78,7 @@ title: Docker 部署
5678
:::
5779

5880
::: info
59-
免费 SSL 证书推荐使用 [httpsok-SSL 证书自动续期](https://httpsok.com/p/4Qjd),一行命令,轻松搞定 SSL
81+
免费 SSL 证书推荐使用 [httpsok-SSL 证书自动续期](https://httpsok.com/p/4Qjd),一行命令,轻松搞定 SSL
6082
证书自动续签,支持:nginx、通配符证书、七牛云、腾讯云、阿里云、CDN、OSS、LB(负载均衡)
6183
:::
6284

docs/changelog.md

Lines changed: 9 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,17 @@ title: 更新日志
99
的成熟与稳定,更意味着它已完全通过验证,可以安心投入生产环境使用。在未来的版本迭代中,我们将持续为开发者带来更优质的产品体验。敬请期待!🤗
1010
:::
1111

12-
## [v1.0.5](https://github.com/fastapi-practices/fastapi_best_architecture/releases/tag/v1.0.5) - 2025-04-09
12+
## [v1.1.0](https://github.com/fastapi-practices/fastapi_best_architecture/releases/tag/v1.1.0) - 2025-04-17
1313

1414
### What's Changed
15-
* Update the changelog for v1.0.4 by [@wu-clan](https://github.com/wu-clan) in [#558](https://github.com/fastapi-practices/fastapi_best_architecture/pull/558)
16-
* Bump dependencies and pre-commits by [@wu-clan](https://github.com/wu-clan) in [#559](https://github.com/fastapi-practices/fastapi_best_architecture/pull/559)
17-
* Add python 3.13 to GitHub ci by [@wu-clan](https://github.com/wu-clan) in [#560](https://github.com/fastapi-practices/fastapi_best_architecture/pull/560)
18-
* Update the system config to plugin by [@wu-clan](https://github.com/wu-clan) in [#561](https://github.com/fastapi-practices/fastapi_best_architecture/pull/561)
19-
* Update dict data and type to plugin by [@wu-clan](https://github.com/wu-clan) in [#562](https://github.com/fastapi-practices/fastapi_best_architecture/pull/562)
20-
* Update menu and add vben5 compatibility by [@wu-clan](https://github.com/wu-clan) in [#563](https://github.com/fastapi-practices/fastapi_best_architecture/pull/563)
21-
* Update the vben5 tree data structure by [@wu-clan](https://github.com/wu-clan) in [#564](https://github.com/fastapi-practices/fastapi_best_architecture/pull/564)
22-
* Update custom validation error messages by [@wu-clan](https://github.com/wu-clan) in [#566](https://github.com/fastapi-practices/fastapi_best_architecture/pull/566)
23-
* Update the number of pagination le by [@wu-clan](https://github.com/wu-clan) in [#565](https://github.com/fastapi-practices/fastapi_best_architecture/pull/565)
24-
* Fix the login password verification by [@wu-clan](https://github.com/wu-clan) in [#568](https://github.com/fastapi-practices/fastapi_best_architecture/pull/568)
25-
* Fix the failure hook of celery task by [@wu-clan](https://github.com/wu-clan) in [#569](https://github.com/fastapi-practices/fastapi_best_architecture/pull/569)
26-
* Bump fastapi oauth2 from 0.0.1a2 to 0.0.1 by [@wu-clan](https://github.com/wu-clan) in [#570](https://github.com/fastapi-practices/fastapi_best_architecture/pull/570)
27-
* Fix the log rule in gitignore by [@wu-clan](https://github.com/wu-clan) in [#571](https://github.com/fastapi-practices/fastapi_best_architecture/pull/571)
28-
15+
* Update the changelog for v1.0.5 by [@wu-clan](https://github.com/wu-clan) in [#572](https://github.com/fastapi-practices/fastapi_best_architecture/pull/572)
16+
* Update the default value for some functions by [@wu-clan](https://github.com/wu-clan) in [#573](https://github.com/fastapi-practices/fastapi_best_architecture/pull/573)
17+
* Optimize the file structure of code generator by [@wu-clan](https://github.com/wu-clan) in [#574](https://github.com/fastapi-practices/fastapi_best_architecture/pull/574)
18+
* Update casbin RBAC verify to dynamic import by [@wu-clan](https://github.com/wu-clan) in [#576](https://github.com/fastapi-practices/fastapi_best_architecture/pull/576)
19+
* Update unique columns in dict models by [@wu-clan](https://github.com/wu-clan) in [#577](https://github.com/fastapi-practices/fastapi_best_architecture/pull/577)
20+
* Update the code generator to plugin by [@wu-clan](https://github.com/wu-clan) in [#578](https://github.com/fastapi-practices/fastapi_best_architecture/pull/578)
21+
* Fix avatar url type of update avatar by [@huyuwei1996](https://github.com/huyuwei1996) in [#575](https://github.com/fastapi-practices/fastapi_best_architecture/pull/575)
22+
* Update code generator file and table naming by [@wu-clan](https://github.com/wu-clan) in [#579](https://github.com/fastapi-practices/fastapi_best_architecture/pull/579)
2923

3024
## 完整日志
3125

0 commit comments

Comments
 (0)