We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61f5452 commit 63d9089Copy full SHA for 63d9089
bin/teardown
@@ -0,0 +1,21 @@
1
+#!/usr/bin/env bash
2
+
3
+# NOTE: this is maybe temporary... for helping to test project setup
4
5
+echo -n "Removing all maven dependencies"
6
+rm -rf ~/.m2/repository
7
+echo "...done"
8
9
+echo -n "Removing all npm dependencies"
10
+rm -rf builder-frontend/node_modules screener-frontend/node_modules
11
12
13
+echo -n "Removing devbox"
14
+rm /usr/local/bin/devbox
15
+rm -rf ~/.cache/devbox
16
+rm -rf ~/.local/share/devbox
17
18
19
+echo -n "Removing nix"
20
+rm -rf /nix ~/.nix-channels ~/.nix-defexpr ~/.nix-profile
21
0 commit comments