From 94e4d00b533bb4198c33fd22f52cdaebbfbe6052 Mon Sep 17 00:00:00 2001 From: Felipe Schmitt <492108+fsschmitt@users.noreply.github.com> Date: Fri, 28 Nov 2025 10:20:35 -0500 Subject: [PATCH 1/2] fix: updated docker instructions to support copy paste --- docs/DOCKER.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/DOCKER.md b/docs/DOCKER.md index 37169d2..91652ce 100644 --- a/docs/DOCKER.md +++ b/docs/DOCKER.md @@ -10,27 +10,27 @@ This file covers how to run VERT under a Docker container. First, clone the repository: ```shell -$ git clone https://github.com/VERT-sh/VERT -$ cd VERT/ +git clone https://github.com/VERT-sh/VERT +cd VERT/ ``` Then build a Docker image with: ```shell -$ docker build -t vert-sh/vert \ +docker build -t vert-sh/vert \ --build-arg PUB_ENV=production \ --build-arg PUB_HOSTNAME=vert.sh \ --build-arg PUB_PLAUSIBLE_URL=https://plausible.example.com \ --build-arg PUB_VERTD_URL=https://vertd.vert.sh \ --build-arg PUB_DONATION_URL=https://donations.vert.sh \ - --build-arg PUB_DISABLE_ALL_EXTERNAL_REQUESTS=false + --build-arg PUB_DISABLE_ALL_EXTERNAL_REQUESTS=false \ --build-arg PUB_STRIPE_KEY="" . ``` You can then run it by using: ```shell -$ docker run -d \ +docker run -d \ --restart unless-stopped \ -p 3000:80 \ --name "vert" \ @@ -50,7 +50,7 @@ We also have a [`docker-compose.yml`](/docker-compose.yml) file available. Use ` While there's an image you can pull instead of cloning the repo and building the image yourself, you will not be able to update any of the environment variables (e.g. `PUB_PLAUSIBLE_URL`) as they're baked directly into the image and not obtained during runtime. If you're okay with this, you can simply run this command instead: ```shell -$ docker run -d \ +docker run -d \ --restart unless-stopped \ -p 3000:80 \ --name "vert" \ From 4f89b08bf2e412881898a6afae955b496152adab Mon Sep 17 00:00:00 2001 From: Felipe Schmitt <492108+fsschmitt@users.noreply.github.com> Date: Wed, 3 Dec 2025 17:26:45 -0800 Subject: [PATCH 2/2] fix: getting started commands --- docs/GETTING_STARTED.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/GETTING_STARTED.md b/docs/GETTING_STARTED.md index 1edb1ab..df9be32 100644 --- a/docs/GETTING_STARTED.md +++ b/docs/GETTING_STARTED.md @@ -17,13 +17,13 @@ Make sure you have the following installed: First, clone the repository: ```sh -$ git clone https://github.com/VERT-sh/VERT -$ cd VERT/ +git clone https://github.com/VERT-sh/VERT +cd VERT/ ``` Install dependencies: ```sh -$ bun i +bun i ``` And finally, make sure you create a `.env` file in the root of the project. We've included a [`.env.example`](../.env.example) file which you can use to get started.