Skip to content

Commit

Permalink
removes freebsd references (#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
goodroot authored Jul 11, 2024
1 parent cfb6046 commit 288a8b1
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 27 deletions.
2 changes: 1 addition & 1 deletion concept/root-directory-structure.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ By default, QuestDB's root directory will be the following:
<!-- prettier-ignore-start -->

<Tabs defaultValue="nix" values={[
{ label: "Linux/FreeBSD", value: "nix" },
{ label: "Linux", value: "nix" },
{ label: "macOS (Homebrew)", value: "macos" },
{ label: "Windows", value: "windows" },
]}>
Expand Down
45 changes: 24 additions & 21 deletions quick-start.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,27 @@ description:
homebrew, our binaries, and more.
---

import Screenshot from "@theme/Screenshot"
import Screenshot from "@theme/Screenshot";

import Button from "@theme/Button"
import Button from "@theme/Button";

import InterpolateReleaseData from "../src/components/InterpolateReleaseData"
import InterpolateReleaseData from "../src/components/InterpolateReleaseData";

import NoJrePrerequisite from
"./quick-start-utils/\_no-jre-prerequisites.partial.mdx"
import NoJrePrerequisite from "./quick-start-utils/_no-jre-prerequisites.partial.mdx";

import CodeBlock from "@theme/CodeBlock"
import CodeBlock from "@theme/CodeBlock";

import { TabsPlatforms } from "../src/modules/TabsPlatforms"
import { TabsPlatforms } from "../src/modules/TabsPlatforms";

import RunWindows from "./quick-start-utils/\_run-windows.partial.mdx"
import RunWindows from "./quick-start-utils/_run-windows.partial.mdx";

import OptionsNotWindows from
"./quick-start-utils/\_options-not-windows.partial.mdx"
import OptionsNotWindows from "./quick-start-utils/_options-not-windows.partial.mdx";

import OptionsWindows from "./quick-start-utils/\_options-windows.partial.mdx"
import OptionsWindows from "./quick-start-utils/_options-windows.partial.mdx";

import Tabs from "@theme/Tabs"
import Tabs from "@theme/Tabs";

import TabItem from "@theme/TabItem"
import TabItem from "@theme/TabItem";

This guide will get your first QuestDB instance running.

Expand Down Expand Up @@ -55,10 +53,13 @@ platform on the [official documentation](https://docs.docker.com/get-docker/).
Once Docker is installed, you will need to pull QuestDB's image from
[Docker Hub](https://hub.docker.com/r/questdb/questdb) and create a container:

<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}`}
</CodeBlock> )} />
<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}`}
</CodeBlock>
)}
/>

For deeper instructions, see the
[Docker deployment guide](/docs/deployment/docker/).
Expand All @@ -80,9 +81,11 @@ On macOS, the location of the root directory of QuestDB and

### Binaries

export const platforms = [ { label: "Linux", value: "linux" }, { label:
"Windows", value: "windows" }, { label: "FreeBSD", value: "bsd" }, { label:
"Any (no JVM)", value: "noJre" }, ]
export const platforms = [
{ label: "Linux", value: "linux" },
{ label: "Windows", value: "windows" },
{ label: "Any (no JVM)", value: "noJre" },
];

Download and run QuestDB via binaries.

Expand Down Expand Up @@ -149,7 +152,7 @@ Select your platform of choice:

## Run QuestDB

<Tabs defaultValue="nix" values={[ { label: "Linux/FreeBSD/No JVM", value: "nix"
<Tabs defaultValue="nix" values={[ { label: "Linux/No JVM", value: "nix"
}, { label: "macOS (Homebrew)", value: "macos" }, { label: "Windows", value:
"windows" }, ]}>

Expand Down
10 changes: 5 additions & 5 deletions reference/command-line-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import TabItem from "@theme/TabItem"

<Tabs defaultValue="nix"
values={[
{ label: "Linux/FreeBSD", value: "nix" },
{ label: "Linux", value: "nix" },
{ label: "macOS (Homebrew)", value: "macos" },
{ label: "Windows", value: "windows" },
]}>
Expand Down Expand Up @@ -86,7 +86,7 @@ questdb.exe [start|stop|status|install|remove] \

<Tabs defaultValue="nix"
values={[
{ label: "Linux/FreeBSD", value: "nix" },
{ label: "Linux", value: "nix" },
{ label: "macOS (Homebrew)", value: "macos" },
{ label: "Windows", value: "windows" },
]}>
Expand Down Expand Up @@ -127,7 +127,7 @@ will be the following:
<!-- prettier-ignore-start -->

<Tabs defaultValue="nix" values={[
{ label: "Linux/FreeBSD", value: "nix" },
{ label: "Linux", value: "nix" },
{ label: "macOS (Homebrew)", value: "macos" },
{ label: "Windows", value: "windows" },
]}>
Expand Down Expand Up @@ -179,7 +179,7 @@ C:\Windows\System32\qdbroot
<!-- prettier-ignore-start -->

<Tabs defaultValue="nix" values={[
{ label: "Linux/FreeBSD", value: "nix" },
{ label: "Linux", value: "nix" },
{ label: "macOS (Homebrew)", value: "macos" },
{ label: "Windows", value: "windows" },
]}>
Expand Down Expand Up @@ -223,7 +223,7 @@ questdb.exe stop
<!-- prettier-ignore-start -->

<Tabs defaultValue="nix" values={[
{ label: "Linux/FreeBSD", value: "nix" },
{ label: "Linux", value: "nix" },
{ label: "macOS (Homebrew)", value: "macos" },
{ label: "Windows", value: "windows" },
]}>
Expand Down

0 comments on commit 288a8b1

Please sign in to comment.