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

[pull] main from lobehub:main #79

Merged
merged 27 commits into from
Aug 23, 2024
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
6574c01
✨ feat: files and knowledge base (#3487)
arvinxx Aug 21, 2024
e500032
👷 ci: fix release workflow (#3528)
arvinxx Aug 21, 2024
baf9d4c
👷 ci: fix release workflow
arvinxx Aug 21, 2024
5568e3f
:bookmark: chore(release): v1.12.0 [skip ci]
semantic-release-bot Aug 21, 2024
e2cfff7
🐛 fix: fix embeddings multi-insert when there is issues with async ta…
arvinxx Aug 21, 2024
8359654
:bookmark: chore(release): v1.12.1 [skip ci]
semantic-release-bot Aug 21, 2024
6b35a64
📝 docs(bot): Auto sync agents & plugin to readme
lobehubbot Aug 21, 2024
53a3089
📝 docs: improve server deployment docs (#3534)
arvinxx Aug 21, 2024
b0474ef
👷 build: make database docker image exit if migration fail (#3541)
hezhijie0327 Aug 22, 2024
26e0e34
:bookmark: chore(release): v1.12.2 [skip ci]
semantic-release-bot Aug 22, 2024
86c1165
💄 style: hide settings in repo (#3540)
arvinxx Aug 22, 2024
da4daf5
:bookmark: chore(release): v1.12.3 [skip ci]
semantic-release-bot Aug 22, 2024
aa936c8
💄 style: fix link style (#3552)
arvinxx Aug 22, 2024
5984fae
:bookmark: chore(release): v1.12.4 [skip ci]
semantic-release-bot Aug 22, 2024
58d8f57
📝 docs: sync updates to English docs (#3555)
arvinxx Aug 22, 2024
2ed0b8e
📝 docs: Sync S3 docs between Chinese and English versions (#3556)
arvinxx Aug 22, 2024
86c5a99
🐛 fix: fix clipboard copy issue and improve upload cors feedback (#3557)
arvinxx Aug 22, 2024
2ecd5e3
:bookmark: chore(release): v1.12.5 [skip ci]
semantic-release-bot Aug 22, 2024
1658403
♻️ refactor: refactor s3 env and support path-style for minio (#3559)
arvinxx Aug 22, 2024
5c2ba8a
:bookmark: chore(release): v1.12.6 [skip ci]
semantic-release-bot Aug 22, 2024
7a83cf9
📝 docs: add S3 environment variables to documentation (#3562)
arvinxx Aug 22, 2024
0c4efe4
:bug: fix: Logout button not shown on mobile view when using nextauth…
cy948 Aug 22, 2024
5ef5963
:bookmark: chore(release): v1.12.7 [skip ci]
semantic-release-bot Aug 22, 2024
bc6b64c
🐛 fix: fix `NEXT_PUBLIC_S3_DOMAIN` error on Docker (#3564)
arvinxx Aug 22, 2024
653bb34
:bookmark: chore(release): v1.12.8 [skip ci]
semantic-release-bot Aug 22, 2024
96bb38a
🐛 fix: improve s3 path-style url (#3567)
arvinxx Aug 23, 2024
320df5b
:bookmark: chore(release): v1.12.9 [skip ci]
semantic-release-bot Aug 23, 2024
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
Prev Previous commit
Next Next commit
👷 build: make database docker image exit if migration fail (lobehub#3541
)

* 👷 build: detect migration exit code

* 👷 build: fix ci issue
hezhijie0327 authored Aug 22, 2024
commit b0474ef238a715aa433e5f236569d758d8e7515b
6 changes: 4 additions & 2 deletions Dockerfile.database
Original file line number Diff line number Diff line change
@@ -218,5 +218,7 @@ CMD \
fi; \
# Run migration
node "/app/docker.cjs"; \
# Run the server
${PROXYCHAINS} node "/app/server.js";
if [ "$?" -eq "0" ]; then \
# Run the server
${PROXYCHAINS} node "/app/server.js"; \
fi;