Skip to content

Latest commit

 

History

History
54 lines (39 loc) · 1.56 KB

README.md

File metadata and controls

54 lines (39 loc) · 1.56 KB

ng-de.org

Website for the ng-de.org conference.

Build Status

Build Status

Photos

Background Image by Daniel Brosch on Unsplash

Development

0. Prerequisite Software

1. Getting the Sources

Fork and clone repository:

  1. Login to your GitHub account or create one by following the instructions given here.
  2. Fork the main repository.
  3. 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

2. Install the project dependencies

# install bundler as ruby package manager
gem install bundler
# install the project depdencies defined int the Gemfile
bundle install

3. Run the jekyll instance

# start the web page at http://localhost:4000
bundle exec jekyll serve --incremental