https://github.com/workshops-de/angular.de
Website of angular.de 🅰️
https://github.com/workshops-de/angular.de
angular community javascript website
Last synced: about 1 month ago
JSON representation
Website of angular.de 🅰️
- Host: GitHub
- URL: https://github.com/workshops-de/angular.de
- Owner: workshops-de
- Created: 2017-04-21T08:12:33.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2026-02-02T15:51:36.000Z (about 2 months ago)
- Last Synced: 2026-02-03T04:40:52.746Z (about 2 months ago)
- Topics: angular, community, javascript, website
- Language: HTML
- Homepage: https://angular.de
- Size: 118 MB
- Stars: 13
- Watchers: 26
- Forks: 64
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
# Angular.DE
## Build Status

## Development
### 0. Prerequisite Software
* [Git](http://git-scm.com) and/or the **GitHub app** (for [Mac](http://mac.github.com) or
[Windows](http://windows.github.com)); [GitHub's Guide to Installing
Git](https://help.github.com/articles/set-up-git) is a good source of information.
* [Ruby](https://www.ruby-lang.org/en/)
### 1. Getting the Sources
Fork and clone repository:
1. Login to your GitHub account or create one by following the instructions given
[here](https://github.com/signup/free).
2. [Fork](http://help.github.com/forking) the [main repository](https://github.com/workshops-de/angular.de).
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.
```shell
# Clone your GitHub repository:
git clone git@github.com:/angular.de.git
# Go to the directory:
cd angular.de
# Add the main repository as an upstream remote to your repository:
git remote add upstream https://github.com/workshops-de/angular.de.git
```
### 2. Install the project dependencies
```bash
# install bundler as ruby package manager
gem install bundler
# install the project depdencies defined int the Gemfile
bundle install
```
### 3. Run the jekyll instance
```bash
# start the web page at http://localhost:4000
bundle exec jekyll serve --incremental
```
## 4. Update/Pull shared module
We're using a git submodule to share files like templates, images and themes across all workshops_de portals. Use following command to pull and update the repository including submodule.
```bash
$ git pull --recurse-submodules
```
### 5. Pull Request
Createa a [Pull Request](https://help.github.com/articles/creating-a-pull-request/) to describe and propose your changes to this repository.
If you don't know what Pull Requests(PR) all about you should check out [this article](https://help.github.com/articles/about-pull-requests/).