diff --git a/.replit b/.replit
deleted file mode 100644
index 5d93dfd..0000000
--- a/.replit
+++ /dev/null
@@ -1,86 +0,0 @@
-entrypoint = "app.js"
-
-hidden = [".config", "package-lock.json"]
-
-[interpreter]
-command = [
- "prybar-nodejs",
- "-q",
- "--ps1",
- "\u0001\u001b[33m\u0002\u0001\u001b[00m\u0002 ",
- "-i"
-]
-
-[[hints]]
-regex = "Error \\[ERR_REQUIRE_ESM\\]"
-message = "We see that you are using require(...) inside your code. We currently do not support this syntax. Please use 'import' instead when using external modules. (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import)"
-
-[nix]
-channel = "stable-22_11"
-
-[env]
-XDG_CONFIG_HOME = "/home/runner/.config"
-PATH = "/home/runner/$REPL_SLUG/.config/npm/node_global/bin:/home/runner/$REPL_SLUG/node_modules/.bin"
-npm_config_prefix = "/home/runner/$REPL_SLUG/.config/npm/node_global"
-
-[gitHubImport]
-requiredFiles = [".replit", "replit.nix", ".config", "package.json", "package-lock.json"]
-
-[packager]
-language = "nodejs"
-
- [packager.features]
- packageSearch = true
- guessImports = true
- enabledForHosting = false
-
-[unitTest]
-language = "nodejs"
-
-[debugger]
-support = true
-
- [debugger.interactive]
- transport = "localhost:0"
- startCommand = [ "dap-node" ]
-
- [debugger.interactive.initializeMessage]
- command = "initialize"
- type = "request"
-
- [debugger.interactive.initializeMessage.arguments]
- clientID = "replit"
- clientName = "replit.com"
- columnsStartAt1 = true
- linesStartAt1 = true
- locale = "en-us"
- pathFormat = "path"
- supportsInvalidatedEvent = true
- supportsProgressReporting = true
- supportsRunInTerminalRequest = true
- supportsVariablePaging = true
- supportsVariableType = true
-
- [debugger.interactive.launchMessage]
- command = "launch"
- type = "request"
-
- [debugger.interactive.launchMessage.arguments]
- args = []
- console = "externalTerminal"
- cwd = "."
- environment = []
- pauseForSourceMap = false
- program = "./index.js"
- request = "launch"
- sourceMaps = true
- stopOnEntry = false
- type = "pwa-node"
-
-[languages]
-
-[languages.javascript]
-pattern = "**/{*.js,*.jsx,*.ts,*.tsx}"
-
-[languages.javascript.languageServer]
-start = "typescript-language-server --stdio"
\ No newline at end of file
diff --git a/README.md b/README.md
index 8b60100..9cec5a9 100644
--- a/README.md
+++ b/README.md
@@ -28,10 +28,9 @@ Table of contents
- Filesystem
## Quick & Easy Deployment Options
-## PLEASE READ THIS NOTICE: IF YOU ARE USING NODE VERSION 20 (HEROKU, RAILWAY), YOU WILL NEED TO TEMPORARILY DOWNGRADE TO 19 OR EARLIER.
-[](https://heroku.com/deploy/?template=https://github.com/NebulaServices/Nebula)
-
-[](https://replit.com/github/NebulaServices/Nebula)
+
+## PLEASE READ THIS NOTICE: IF YOU ARE USING NODE VERSION 20 (HEROKU, RAILWAY), YOU WILL NEED TO TEMPORARILY DOWNGRADE TO 19 OR EARLIER.
+
[](https://cloud.ibm.com/devops/setup/deploy?repository=https://github.com/NebulaServices/Nebula)
@@ -42,8 +41,6 @@ Table of contents
[](https://railway.app/new/template/pBzeiN)
[](https://app.koyeb.com/deploy?type=git&repository=github.com/NebulaServices/Nebula&branch=main&name=NebulaProxy)
-
-[](https://render.com/deploy?repo=https://github.com/NebulaServices/Nebula)
---
diff --git a/render.yaml b/render.yaml
deleted file mode 100644
index a55bed8..0000000
--- a/render.yaml
+++ /dev/null
@@ -1,10 +0,0 @@
-services:
- - type: web
- name: Nebula
- env: docker
- repo: https://github.com/NebulaServices/Nebula.git
- region: oregon
- plan: free
- branch: main
- numInstances: 1
- healthCheckPath: /
diff --git a/replit.nix b/replit.nix
deleted file mode 100644
index 813a4f6..0000000
--- a/replit.nix
+++ /dev/null
@@ -1,8 +0,0 @@
-{ pkgs }: {
- deps = [
- pkgs.nodejs-18_x
- pkgs.nodePackages.typescript-language-server
- pkgs.yarn
- pkgs.replitPackages.jest
- ];
-}