https://github.com/workshops-de/reactjs.de
Website of reactjs.de ⚛️
https://github.com/workshops-de/reactjs.de
community javascript reactjs website
Last synced: 5 months ago
JSON representation
Website of reactjs.de ⚛️
- Host: GitHub
- URL: https://github.com/workshops-de/reactjs.de
- Owner: workshops-de
- Created: 2018-06-18T07:09:29.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2025-12-02T14:56:59.000Z (7 months ago)
- Last Synced: 2025-12-05T12:41:03.619Z (7 months ago)
- Topics: community, javascript, reactjs, website
- Language: JavaScript
- Homepage: https://reactjs.de
- Size: 32.6 MB
- Stars: 4
- Watchers: 30
- Forks: 8
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ReactJS.DE
Website for the german React Community [ReactJS.de](https://reactjs.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/reactjs.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:/reactjs.de.git
# Go to the directory:
cd reactjs.de
# Add the main repository as an upstream remote to your repository:
git remote add upstream https://github.com/workshops-de/reactjs.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.
```
$ 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/).