-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable changelog documentation (#552)
* Changelog init commit * changing docker compose config to incorporate changelog builds
- Loading branch information
Showing
12 changed files
with
172 additions
and
0 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,6 @@ | ||
# rename this file to .env and fill in the values | ||
|
||
# Github personal access token that has access to the repo provided below. | ||
GITHUB_TOKEN= | ||
# should be account-name/repo-name (e.g. "fennel-ai/my-repo") | ||
GITHUB_REPO= |
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 @@ | ||
.env | ||
examples/**.json | ||
.vscode | ||
venv/ | ||
**/__pycache__/* | ||
.idea/ | ||
wordlist.dic |
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 @@ | ||
build: | ||
docker-compose build --no-cache | ||
up: | ||
docker-compose up | ||
test: # run the tests on the examples directory | ||
echo "Not Implemented Yet!" | ||
check: # here we can check validity of markdown, enforce our own rules e.g. only one <h1> as the first element, run prettier on .md/.mdx etc. | ||
echo "Not Implemented Yet!" |
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,22 @@ | ||
{ | ||
"index_name": "docsearch_prod", | ||
"start_urls": [ | ||
"https://fennel.ai/docs" | ||
], | ||
"sitemap_urls": [ | ||
"https://fennel.ai/docs/sitemap.xml" | ||
], | ||
"selectors": { | ||
"lvl0": { | ||
"selector": "#section_title", | ||
"global": true, | ||
"default_value": "Documentation" | ||
}, | ||
"lvl1": "main h1", | ||
"lvl2": "main h2, main p#page_description", | ||
"lvl3": "main h3", | ||
"lvl4": "main h4", | ||
"lvl5": "main h5", | ||
"text": "main p:not(#section_title)" | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.