Website for the ng-de.org conference.
Background Image by Daniel Brosch on Unsplash
-
Git and/or the GitHub app (for Mac or Windows); GitHub's Guide to Installing Git is a good source of information.
Fork and clone repository:
- Login to your GitHub account or create one by following the instructions given here.
- Fork the main repository.
- Clone your fork of the repository and define an
upstream
remote pointing back to the main repository that you forked in the first place.
# Clone your GitHub repository:
git clone [email protected]:<github username>/ng-de.org.git
# Go to the directory:
cd ng-de.org
# Add the main repository as an upstream remote to your repository:
git remote add upstream https://github.com/ngdeconf/ng-de.org.git
# install bundler as ruby package manager
gem install bundler
# install the project depdencies defined int the Gemfile
bundle install
# start the web page at http://localhost:4000
bundle exec jekyll serve --incremental