Last active
March 24, 2019 20:53
-
-
Save davidjguru/e9bcc0c40656dc68fcb66cab3f0d1900 to your computer and use it in GitHub Desktop.
Installation guide for sevilladevelopers in Ubuntu
This file contains 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
#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