Last active
November 11, 2016 09:31
-
-
Save gurpreetatwal/786e30b764a8cee2bc6f60070bc92835 to your computer and use it in GitHub Desktop.
Install script for linux systems
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 | |
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash - | |
sudo apt-get update | |
sudo apt-get upgrade | |
sudo apt-get install -y vim curl git nodejs build-essential tmux xclip | |
redis-tools | |
sudo npm i -g npm bower browser-sync eslint nodemon yo bunyan gulp | |
# Create ssh keys | |
ssh-keygen -t rsa -b 4096 | |
ssh-add ~/.ssh/id_rsa | |
# Git Config | |
git config --global user.email "[email protected]" | |
git config --global user.name "Gurpreet Atwal" | |
git config --global core.editor vim | |
git config --global push.default current |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment