-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feature: integrate chunkr as a provider for markdown conversion
- Loading branch information
1 parent
e4f8e14
commit afeab01
Showing
14 changed files
with
509 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ | |
|
||
```bash | ||
cd server | ||
cp .env.dist .env | ||
cp ../.env.dist .env | ||
``` | ||
|
||
### Start docker dependency services | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ALTER TABLE file_tasks | ||
DROP COLUMN IF EXISTS provider; | ||
|
||
ALTER TABLE file_tasks | ||
DROP COLUMN IF EXISTS chunkr_task_id; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
ALTER TABLE file_tasks | ||
ADD COLUMN IF NOT EXISTS provider String; | ||
|
||
ALTER TABLE file_tasks | ||
ADD COLUMN IF NOT EXISTS chunkr_task_id String; | ||
|
||
ALTER TABLE file_tasks | ||
ADD COLUMN IF NOT EXISTS chunkr_api_key Nullable(String); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.