-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
structured according to PkgTemplate, other changes
- Loading branch information
1 parent
ed41636
commit 6dc7aa3
Showing
22 changed files
with
557 additions
and
435 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# See https://domluna.github.io/JuliaFormatter.jl/stable/ for a list of options | ||
style = "sciml" |
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,7 @@ | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "weekly" |
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,16 @@ | ||
name: CompatHelper | ||
on: | ||
schedule: | ||
- cron: 0 0 1 * * | ||
workflow_dispatch: | ||
jobs: | ||
CompatHelper: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Pkg.add("CompatHelper") | ||
run: julia -e 'using Pkg; Pkg.add("CompatHelper")' | ||
- name: CompatHelper.main() | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }} | ||
run: julia -e 'using CompatHelper; CompatHelper.main()' |
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,31 @@ | ||
name: TagBot | ||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
workflow_dispatch: | ||
inputs: | ||
lookback: | ||
default: "3" | ||
permissions: | ||
actions: read | ||
checks: read | ||
contents: write | ||
deployments: read | ||
issues: read | ||
discussions: read | ||
packages: read | ||
pages: read | ||
pull-requests: read | ||
repository-projects: read | ||
security-events: read | ||
statuses: read | ||
jobs: | ||
TagBot: | ||
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: JuliaRegistries/TagBot@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
ssh: ${{ secrets.DOCUMENTER_KEY }} |
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
# Ignore .env files | ||
.env | ||
knowledge_packs/ | ||
Manifest.toml | ||
Manifest.toml | ||
/Manifest.toml | ||
/docs/Manifest.toml | ||
/docs/build/ |
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,6 @@ | ||
{ | ||
"cSpell.words": [ | ||
"eachmatch", | ||
"postprocess" | ||
] | ||
} |
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 |
---|---|---|
@@ -1,25 +1,35 @@ | ||
name = "RAGKit" | ||
uuid = "74e640d8-05f4-4b4f-8742-56fc934b3f17" | ||
authors = ["Shreyas Agrawal <48771895+splendidbug@users.noreply.github.com>"] | ||
name = "DocsScraper" | ||
uuid = "bd71d052-5e08-40cc-a492-eb4e8da4b649" | ||
authors = ["Shreyas Agrawal @splendidbug and J S @svilupp"] | ||
version = "0.1.0" | ||
|
||
[deps] | ||
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c" | ||
DotEnv = "4dc1fcf4-5e3b-5448-94ab-0c38ec0385c1" | ||
EzXML = "8f5d6c58-4d21-5cfd-889c-e3ad7ee6a615" | ||
Gumbo = "708ec375-b3d6-5a57-a7ce-8257bf98657a" | ||
HDF5 = "f67ccb44-e63f-5c2f-98bd-6dc0ccc4ba2f" | ||
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3" | ||
Inflate = "d25df0c9-e2be-5dd7-82c8-3ad0b3e990b9" | ||
PkgTemplates = "14b8a8f1-9102-5b29-a752-f990bacb7fe1" | ||
PromptingTools = "670122d1-24a8-4d70-bfce-740807c42192" | ||
Tar = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e" | ||
URIParser = "30578b45-9adc-5946-b283-645ec420af67" | ||
URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" | ||
|
||
[compat] | ||
AbstractTrees = "0.4.5" | ||
EzXML = "1.2.0" | ||
Gumbo = "0.8.2" | ||
HDF5 = "0.17.2" | ||
HTTP = "1.10.4" | ||
Inflate = "0.1.5" | ||
PromptingTools = "0.36.0" | ||
URIParser = "0.4.1" | ||
URIs = "1.5.1" | ||
Tar = "1.10.0" | ||
|
||
[extras] | ||
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = ["Aqua", "Test"] |
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 |
---|---|---|
@@ -1,24 +1,23 @@ | ||
using Documenter: Documenter, makedocs, deploydocs | ||
using PkgTemplates: PkgTemplates | ||
using DocsScraper | ||
using Documenter | ||
|
||
DocMeta.setdocmeta!(DocsScraper, :DocTestSetup, :(using DocsScraper); recursive=true) | ||
|
||
makedocs(; | ||
modules=[PkgTemplates], | ||
authors="Shreyas Agrawal <[email protected]>", | ||
repo="https://github.com/splendidbug/RAGKit", | ||
sitename="RAGKit.jl", | ||
modules=[DocsScraper], | ||
authors="Shreyas Agrawal @splendidbug and J S @svilupp", | ||
sitename="DocsScraper.jl", | ||
# format=Documenter.HTML(; | ||
# repolink="https://github.com/splendidbug/RAGKit", | ||
# canonical="https://juliaci.github.io/PkgTemplates.jl", | ||
# canonical="https://Shreyas Agrawal.github.io/DocsScraper.jl", | ||
# edit_link="master", | ||
# assets=String[], | ||
# ), | ||
pages=[ | ||
"Home" => "index.md", | ||
"User Guide" => "user.md", | ||
"Developer Guide" => "developer.md", | ||
"Migrating To PkgTemplates 0.7+" => "migrating.md", | ||
], | ||
) | ||
|
||
deploydocs(; | ||
repo="https://github.com/splendidbug/RAGKit", | ||
repo="github.com/Shreyas Agrawal/DocsScraper.jl", | ||
devbranch="main", | ||
) |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# RAGKit | ||
# DocsScraper | ||
|
||
## Documentation | ||
|
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
Oops, something went wrong.