From 928fc415aa4a8e089efd1f618c059e1b1ec9a7cd Mon Sep 17 00:00:00 2001 From: Okiki Ojo Date: Sat, 21 Mar 2026 23:52:54 -0400 Subject: [PATCH] chore: remove Gitpod configuration files and NVM version file Signed-off-by: Okiki Ojo --- .gitpod.Dockerfile | 17 ----------------- .gitpod.yml | 24 ------------------------ .nvmrc | 1 - 3 files changed, 42 deletions(-) delete mode 100644 .gitpod.Dockerfile delete mode 100644 .gitpod.yml delete mode 100644 .nvmrc diff --git a/.gitpod.Dockerfile b/.gitpod.Dockerfile deleted file mode 100644 index 6909ce1..0000000 --- a/.gitpod.Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM gitpod/workspace-full:latest - -# Install custom tools, runtime, etc. using apt-get -# For example, the command below would install "bastet" - a command line tetris clone: -# -# RUN sudo apt-get -q update && # sudo apt-get install -yq bastet && # sudo rm -rf /var/lib/apt/lists/* -# -# More information: https://www.gitpod.io/docs/config-docker/ - -RUN curl -fsSL https://deno.land/x/install/install.sh | sh -RUN /home/gitpod/.deno/bin/deno completions bash > /home/gitpod/.bashrc.d/90-deno && \ - echo 'export DENO_INSTALL="/home/gitpod/.deno"' >> /home/gitpod/.bashrc.d/90-deno && \ - echo 'export PATH="$DENO_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/90-deno - -RUN curl -fsSL https://bun.sh/install | bash -RUN echo 'export BUN_INSTALL="/home/gitpod/.bun"' >> /home/gitpod/.bashrc.d/600-bun | bash && \ - echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> /home/gitpod/.bashrc.d/600-bun | bash \ No newline at end of file diff --git a/.gitpod.yml b/.gitpod.yml deleted file mode 100644 index 82c0a85..0000000 --- a/.gitpod.yml +++ /dev/null @@ -1,24 +0,0 @@ -image: - file: .gitpod.Dockerfile - -# List the ports you want to expose and what to do when they are served. See https://www.gitpod.io/docs/43_config_ports/ -ports: - - port: 4321 - onOpen: notify - - port: 3000 - onOpen: notify - -# List the start up tasks. You can start them in parallel in multiple terminals. See https://www.gitpod.io/docs/44_config_start_tasks/ -tasks: - - init: > - nvm install && - npm install -g pnpm && - pnpm install - command: > - nvm install && - npm install -g pnpm && - pnpm install - -vscode: - extensions: - - denoland.vscode-deno diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index b393560..0000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -23 \ No newline at end of file -- 2.51.2