Skip to content

Instantly share code, notes, and snippets.

@davidjguru
Last active March 24, 2019 20:53
Show Gist options
  • Save davidjguru/e9bcc0c40656dc68fcb66cab3f0d1900 to your computer and use it in GitHub Desktop.
Save davidjguru/e9bcc0c40656dc68fcb66cab3f0d1900 to your computer and use it in GitHub Desktop.
Installation guide for sevilladevelopers in Ubuntu
#Steps for install and deploy the SevillaDevelopers github.io page on a local environment
#OS: Ubuntu 16.10 - Yakkety
#Step 0 Get a fork from https://github.com/SevillaDevelopers/sevilladevelopers.github.io to your Github account
#First, installing git
sudo apt-get install git
#Get a local copy from your remote fork
git clone https://github.com/YOUR_USER_NAME/sevilladevelopers.github.io.git
#Move to your local new directory
cd sevilladevelopers.github.io/
#Then, installing Ruby
sudo apt-get install ruby-full
#Check whether you have Ruby 2.1.0 or higher installed:
ruby --version
#Install the dependency manager tool
sudo gem install bundler
bundle install
#Launch Jekyll
bundle exec jekyll serve
#Go to localhost:4000
#Make ctrl-c to stop the server
#Make your changes, send commits to local, push code _to_ your fork and after, from your Github fork, launch Pull Request.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment