Configuration options
diff --git a/docs/components/steps.tsx b/docs/components/steps.tsx
deleted file mode 100644
index ce348a2..0000000
--- a/docs/components/steps.tsx
+++ /dev/null
@@ -1,9 +0,0 @@
-import type { ReactNode } from 'react';
-
-export function Steps({ children }: { children: ReactNode }) {
- return
{children}
;
-}
-
-export function Step({ children }: { children: ReactNode }) {
- return
{children}
;
-}
diff --git a/docs/content/docs/index.mdx b/docs/content/docs/index.mdx
index 649b0c3..d6f550b 100644
--- a/docs/content/docs/index.mdx
+++ b/docs/content/docs/index.mdx
@@ -17,16 +17,9 @@ import { Accordion, Accordions } from 'fumadocs-ui/components/accordion';
---
-## Install CKAN using ckan-devstaller
+You have several options to choose from for installation. Here are a few:
-You have several options to choose from for installation. Here are a few you may choose one from:
-
-import { Step, Steps } from 'fumadocs-ui/components/steps';
-
-
-
-
-### Customize your CKAN installation with the Builder (Recommended)
+## [1/3] Customize your CKAN installation with the Builder (Recommended)
}
@@ -36,11 +29,7 @@ import { Step, Steps } from 'fumadocs-ui/components/steps';
Click here to customize your CKAN installation with an interactive web GUI
-
-
-
-
-### Install the "CKAN-only" preset
+## [2/3] Install the "CKAN-only" preset
By running the following script, ckan-devstaller will be downloaded and the default configuration for installing CKAN 2.11.3 with ckan-compose will be selected. You can then customize your configuration interactively in your terminal after running this script.
@@ -54,11 +43,7 @@ If you'd rather skip the interactivity and go straight to installation, then run
wget -O - https://github.com/dathere/ckan-devstaller/releases/download/0.3.0/install.bash | bash -s skip-interactive
```
-
-
-
-
-### Install the "datHere Default" preset
+## [3/3] Install the "datHere Default" preset
The following script will download ckan-devstaller and select the following configuration:
@@ -82,9 +67,6 @@ If you'd rather skip the interactivity and go straight to installation, then run
wget -O - https://github.com/dathere/ckan-devstaller/releases/download/0.3.0/install.bash | bash -s dathere-default skip-interactive
```
-
-
-
## Learn more
import { BlocksIcon, HomeIcon, GitMergeIcon, Trash2Icon } from 'lucide-react';
diff --git a/docs/content/docs/reference/developing-with-wsl.mdx b/docs/content/docs/reference/developing-with-wsl.mdx
deleted file mode 100644
index 16956f2..0000000
--- a/docs/content/docs/reference/developing-with-wsl.mdx
+++ /dev/null
@@ -1,95 +0,0 @@
----
-title: Developing with WSL
-description: Tips on how to develop ckan-devstaller on a Windows machine by leveraging Windows Subsystem for Linux.
----
-
-
- This page is a work in progress and is not intended to be used yet.
-
-
-When developing ckan-devstaller on Windows, using Windows Subsystem for Linux (WSL) can be advantageous to demo an Ubuntu 22.04 environment without having to set up a virtual machine.
-
-import { Step, Steps } from 'fumadocs-ui/components/steps';
-import { File, Folder, Files } from 'fumadocs-ui/components/files';
-
-
-
-
-### Install the Ubuntu-22.04 distribution
-
-You'll need to have the Ubuntu-22.04 distribution installed by running the following command:
-
-```bash
-wsl --install Ubuntu-22.04 --version 2
-```
-
-
-
-
-
-### Export a base image
-
-
-
-
-Here's the expected set up where we create a WSL folder:
-
-```files
-/c/Users/rzmk/WSL
-├── images
-| ├── ubuntu-22-04-snapshot.tar
-├── instances
-| ├── cdr.vdhx
-```
-
-Now try to access your new Ubuntu 22.04 instance `cdr` as the `root` user by running:
-
-```bash
-wsl -d cdr
-```
-
-Once logged in as `root`, you'll want to edit the `/etc/wsl.conf` file and modify it so you can login as an admin user instead of `root`. We can use the `nano` editor to modify the file:
-
-```bash
-nano /etc/wsl.conf
-```
-
-Modify the file by adding a `[user]` section with the value `default=rzmk` (where `rzmk` is your username). The file should look similar to this:
-
-```ini
-[boot]
-systemd=true
-
-[user]
-default=rzmk
-```
-
-Now leave your instance:
-
-```bash
-exit
-```
-
-Then terminate the instance:
-
-```bash
-wsl --terminate cdr
-```
-
-Run the instance again and you should be logged in as your admin user by default now:
-
-```bash
-wsl -d cdr
-```
-
-Great, now you can go to the home directory and run one of the [quick start](/docs) scripts:
-
-```bash
-cd ~/
-```
-
-When you want to remove your instance (e.g. so that you can start a brand new instance) then run the following to unregister it:
-
-```bash
-wsl --unregister cdr
-```
diff --git a/docs/content/docs/reference/meta.json b/docs/content/docs/reference/meta.json
deleted file mode 100644
index 3cbd321..0000000
--- a/docs/content/docs/reference/meta.json
+++ /dev/null
@@ -1,6 +0,0 @@
-{
- "pages": [
- "...",
- "!developing-with-wsl"
- ]
-}
\ No newline at end of file