Skip to content

Instantly share code, notes, and snippets.

git config --global user.name "Name Surname"
git config --global user.email name.surname@mail.com
git config --global push.default current
@rlamp
rlamp / termux-node-red-install.sh
Last active August 14, 2022 18:57
Installing node-red on termux
pkg update
pkg install coreutils gnupg wget
wget https://raw.githubusercontent.com/its-pointless/its-pointless.github.io/master/setup-pointless-repo.sh
chmod +x setup-pointless-repo.sh
./setup-pointless-repo.sh
pkg install python make clang gcc-8 nodejs
npm i -g --unsafe-perm node-red
termux-fix-shebang $(which node-red)