From 25e791c3ae5228ac997fd4f4069e6d9ed2a6acbd Mon Sep 17 00:00:00 2001 From: Ty Dunn Date: Thu, 29 Jun 2023 22:01:46 -0700 Subject: adding back redirect --- docs/docs/collecting-data.md | 2 +- docs/netlify.toml | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 docs/netlify.toml diff --git a/docs/docs/collecting-data.md b/docs/docs/collecting-data.md index bc6d758f..b3f5a625 100644 --- a/docs/docs/collecting-data.md +++ b/docs/docs/collecting-data.md @@ -2,6 +2,6 @@ You might have noticed the `Collect Data` toggle at the bottom of the Continue GUI. If you turn it on, it automatically collects accepted and rejected suggestions, so you can fine-tune an LLM to give better answers. -Right now, it stores them in a JSON file on your computer. Going forward, we plan to enable you to join them with data from other developers on your team and help you fine-tune an LLM to better follow your team's best practices. +Right now, it stores them in `.continue/suggestions.json` within your workspace. Going forward, we plan to enable you to join them with data from other developers on your team and help you fine-tune an LLM to better follow your team's best practices. If you are interested in working with us to fine-tune models based on your coding data, reach out to hi@continue.dev! \ No newline at end of file diff --git a/docs/netlify.toml b/docs/netlify.toml new file mode 100644 index 00000000..48ea9fac --- /dev/null +++ b/docs/netlify.toml @@ -0,0 +1,3 @@ +[[redirects]] +from = "/docs" +to = "/docs/intro" \ No newline at end of file -- cgit v1.2.3-70-g09d2 From a0c04eeb37c43ed563c407cde682535569f003d5 Mon Sep 17 00:00:00 2001 From: Ty Dunn Date: Thu, 29 Jun 2023 22:06:54 -0700 Subject: moving to _redirects --- docs/_redirects | 1 + docs/netlify.toml | 3 --- 2 files changed, 1 insertion(+), 3 deletions(-) create mode 100644 docs/_redirects delete mode 100644 docs/netlify.toml diff --git a/docs/_redirects b/docs/_redirects new file mode 100644 index 00000000..3978e746 --- /dev/null +++ b/docs/_redirects @@ -0,0 +1 @@ +/docs /docs/intro \ No newline at end of file diff --git a/docs/netlify.toml b/docs/netlify.toml deleted file mode 100644 index 48ea9fac..00000000 --- a/docs/netlify.toml +++ /dev/null @@ -1,3 +0,0 @@ -[[redirects]] -from = "/docs" -to = "/docs/intro" \ No newline at end of file -- cgit v1.2.3-70-g09d2 From 5eaf56846c1864d4b49c6010f921c5f3e578c0db Mon Sep 17 00:00:00 2001 From: Ty Dunn Date: Thu, 29 Jun 2023 22:10:21 -0700 Subject: force redirect --- docs/_redirects | 1 - docs/netlify.toml | 4 ++++ 2 files changed, 4 insertions(+), 1 deletion(-) delete mode 100644 docs/_redirects create mode 100644 docs/netlify.toml diff --git a/docs/_redirects b/docs/_redirects deleted file mode 100644 index 3978e746..00000000 --- a/docs/_redirects +++ /dev/null @@ -1 +0,0 @@ -/docs /docs/intro \ No newline at end of file diff --git a/docs/netlify.toml b/docs/netlify.toml new file mode 100644 index 00000000..bb0f50ea --- /dev/null +++ b/docs/netlify.toml @@ -0,0 +1,4 @@ +[[redirects]] + from = "/docs" + to = "/docs/intro" + force = true \ No newline at end of file -- cgit v1.2.3-70-g09d2 From 2df0cb0a23b8a46830b055632a25814621c385bc Mon Sep 17 00:00:00 2001 From: Ty Dunn Date: Thu, 29 Jun 2023 22:12:11 -0700 Subject: adjust for docs/docs issue --- docs/netlify.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/netlify.toml b/docs/netlify.toml index bb0f50ea..490ac92e 100644 --- a/docs/netlify.toml +++ b/docs/netlify.toml @@ -1,4 +1,4 @@ [[redirects]] - from = "/docs" + from = "/" to = "/docs/intro" force = true \ No newline at end of file -- cgit v1.2.3-70-g09d2 From 658c1c30e103b57f5928b5a26ec1672182a3fada Mon Sep 17 00:00:00 2001 From: Ty Dunn Date: Thu, 29 Jun 2023 22:16:19 -0700 Subject: logo back to website --- docs/docusaurus.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/docusaurus.config.js b/docs/docusaurus.config.js index 2274d42a..a534eaa4 100644 --- a/docs/docusaurus.config.js +++ b/docs/docusaurus.config.js @@ -63,6 +63,7 @@ const config = { logo: { alt: "Continue Logo", src: "img/logo.png", + href: 'https://continue.dev' }, items: [ { -- cgit v1.2.3-70-g09d2