Skip to content
This repository was archived by the owner on Sep 30, 2020. It is now read-only.

Commit f177283

Browse files
committed
Merge pull request #141 from aldeka/installation-instructions
Added a gemfile and installation instructions
2 parents 267198f + 75d0954 commit f177283

File tree

3 files changed

+23
-1
lines changed

3 files changed

+23
-1
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
_site
1+
_site
2+
Gemfile.lock
3+
serve/

Gemfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
source "https://rubygems.org"
2+
3+
gem 'jekyll'

README.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# rust-www
2+
3+
This repository contains the source files for rust-lang.org.
4+
5+
To install jekyll (and any other dependencies, if we get any):
6+
7+
```
8+
bundle install
9+
```
10+
11+
To run this website as a developer:
12+
13+
```
14+
jekyll serve
15+
```
16+
17+
This will serve the site at `localhost:4000`.

0 commit comments

Comments
 (0)