diff --git a/.circleci/config.yml b/.circleci/config.yml index cf2aa70fbf..c2efa287b4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -67,6 +67,17 @@ jobs: - config - public + validate-llms-txt: + executor: + name: default + steps: + - checkout + - attach_workspace: + at: . + - run: + name: Validate llms.txt + command: yarn validate-llms-txt + test-nginx: docker: - image: heroku/heroku:24-build @@ -143,4 +154,7 @@ workflows: - test-nginx: requires: - build + - validate-llms-txt: + requires: + - build diff --git a/.env.example b/.env.example index 5df5a8df0d..12a537f6cb 100644 --- a/.env.example +++ b/.env.example @@ -11,8 +11,7 @@ ASSET_PREFIX= INKEEP_CHAT_ENABLED= INKEEP_CHAT_API_KEY= -INKEEP_CHAT_INTEGRATION_ID= -INKEEP_CHAT_ORGANIZATION_ID= +CONVERSATIONS_API_URL='http://localhost:3000/api/conversations' INSIGHTS_ENABLED=false INSIGHTS_DEBUG=true diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 0000000000..cdd56bd501 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,3 @@ +# Ignore all mdx files in src/pages - we need to be able to render components on one line for inlining +src/pages/**/*.mdx +src/pages/**/*.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3607502668..804bed99e3 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -180,7 +180,7 @@ There are three types of admonition that can be used; `note`, `important` and `f #### Feature changes -Two additional types of admonition are used to display features that have been added or updated in a version update; `new` and `updated`. +Three additional types of admonition are used to display features that have been added or updated in a version update; `new`, `updated` and `experimental`. ```html