This is a breaking change that renames the entire project from "Carrot BBS" to "WithYou".
All checks were successful
Build Backend / build (push) Successful in 5m10s
Build Backend / build-docker (push) Successful in 2m22s

The Go module name has been changed from `carrot_bbs` to `with_you`, which requires
all import paths to be updated throughout the codebase and by external consumers.

BREAKING CHANGE: Module name changed from carrot_bbs to with_you. All imports
and dependencies must be updated from carrot_bbs/* to with_you/*.
This commit is contained in:
lafay
2026-04-22 16:01:59 +08:00
parent 38d628c696
commit 2f584c1f2c
149 changed files with 551 additions and 551 deletions

View File

@@ -1,17 +1,17 @@
#!/bin/bash
# carrot_bbs Docker 启动脚本
# 使用前请确保已经构建好镜像: docker build -t carrot_bbs:latest .
# with_you Docker 启动脚本
# 使用前请确保已经构建好镜像: docker build -t with_you:latest .
docker run -d \
--name carrot_bbs \
--name with_you \
--network 1panel-network \
-p 8080:8080 \
-e APP_DATABASE_TYPE=postgres \
-e APP_DATABASE_POSTGRES_HOST=1Panel-postgresql-t0g7 \
-e APP_DATABASE_POSTGRES_USER=carrot_bbs \
-e APP_DATABASE_POSTGRES_USER=with_you \
-e APP_DATABASE_POSTGRES_PASSWORD=We5Zyb6WzCa36tCT \
-e APP_DATABASE_POSTGRES_DBNAME=carrot_bbs \
-e APP_DATABASE_POSTGRES_DBNAME=with_you \
-e APP_REDIS_TYPE=redis \
-e APP_REDIS_REDIS_HOST=1Panel-redis-dfmM \
-e APP_REDIS_REDIS_PASSWORD=redis_j8CMza \
@@ -39,8 +39,8 @@ docker run -d \
-e APP_EMAIL_USERNAME=no-reply@qczlit.cn \
-e APP_EMAIL_PASSWORD=HbvwwVjRyiWg9gsK \
-e APP_EMAIL_FROM_ADDRESS=no-reply@qczlit.cn \
-e APP_EMAIL_FROM_NAME="Carrot BBS" \
-e APP_EMAIL_FROM_NAME="WithYou" \
-e APP_EMAIL_USE_TLS=true \
-e APP_EMAIL_INSECURE_SKIP_VERIFY=false \
-e APP_EMAIL_TIMEOUT=15 \
carrot-bbs-backend:20260309-181055
with-you-backend:20260309-181055