Skip to content

Commit

Permalink
route change & polish
Browse files Browse the repository at this point in the history
  • Loading branch information
goodroot committed Dec 12, 2024
1 parent 2ed0e5b commit 211e2ea
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion documentation/quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Once Docker is installed, you will need to pull QuestDB's image from
<InterpolateReleaseData
renderText={(release) => (
<CodeBlock className="language-shell">
{`docker run \\ -p 9000:9000 -p 9009:9009 -p 8812:8812 -p 9003:9003 \\ questdb/questdb:${release.name}`}
{`docker run -p 9000:9000 -p 9009:9009 -p 8812:8812 -p 9003:9003 questdb/questdb:${release.name}`}
</CodeBlock>
)}
/>
Expand Down
4 changes: 1 addition & 3 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,14 @@ import dotenv from "dotenv"
const ssrTemplate = require("./src/internals/ssr.template")
const customFields = require("./src/config/customFields")
const path = require("path")
const isPreviews = process.env.NETLIFY && process.env.CONTEXT === 'deploy-preview'

dotenv.config()

const config = {
title: "QuestDB",
tagline: "QuestDB is the fastest open source time series database",
url: `https://${customFields.domain}`,
baseUrl: isPreviews ? '/' : '/docs/',
baseUrl: '/docs/',
baseUrlIssueBanner: false,
favicon: "/images/favicon.webp",
organizationName: "QuestDB",
Expand Down Expand Up @@ -140,7 +139,6 @@ const config = {
[
"@docusaurus/preset-classic",
{

blog: false,
docs: {
include: ["**/*!(.partial).{md,mdx}"],
Expand Down

0 comments on commit 211e2ea

Please sign in to comment.