$ # Update cache:
$ sudo apt update
$ # Install ruby:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alias runnow='gnome-terminal --tab -- bash -c "cd ~/runnow/functions; npm run serve; bash";\ | |
gnome-terminal --tab -- bash -c "cd ~/runnow; npm start; bash";' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
# Check if vsce is installed | |
npm install -g vsce | |
git clone -b feature/run-in-docker https://github.com/georgezim85/vscode-codeception.git | |
cd vscode-codeception | |
yarn --non-interactive | |
npm run build | |
mkdir -p build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
# Instalar OpenJDK: | |
sudo apt-get update | |
sudo apt-get install openjdk-13-jdk | |
# Baixar Netbeans Apache: | |
wget http://mirror.nbtelecom.com.br/apache/netbeans/netbeans/12.1/Apache-NetBeans-12.1-bin-linux-x64.sh |