Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://gitbucket.github.io/gitbucket-news/
The repository for GitBucket News
https://gitbucket.github.io/gitbucket-news/
gitbucket
Last synced: 1 day ago
JSON representation
The repository for GitBucket News
- Host: GitHub
- URL: https://gitbucket.github.io/gitbucket-news/
- Owner: gitbucket
- Created: 2015-09-25T19:00:53.000Z (about 9 years ago)
- Default Branch: gh-pages
- Last Pushed: 2024-05-18T08:25:41.000Z (6 months ago)
- Last Synced: 2024-08-02T06:14:27.553Z (3 months ago)
- Topics: gitbucket
- Language: CSS
- Homepage: https://gitbucket.github.io/gitbucket-news/
- Size: 28 MB
- Stars: 3
- Watchers: 14
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- Self-Hosting-Guide - gitbucket - Easily installable GitHub clone powered by Scala. (Tools for Self-Hosting / Development)
README
GitBucket News
========GitBucket News is hosted by Jekyll on GitHub Pages.
## Setup Jekyll on your machine
After install Ruby environment, you can install jekyll as follows:
```
gem install bundler jekyll jekyll-paginate jemoji jekyll-sitemap jekyll-feed jekyll-seo-tag jekyll-redirect-from
```Then, you can run jekyll as below at the root directory of this branch and access to http://localhost:4000/ by your web browser.
```
jekyll server --baseurl '' --watch --future
```You can stop jekyll by CTRL+C.
## Add new entry
You can add a new blog entry by adding a markdown file into `_post` directory.
## Add images
If you want to add image to the entry, put image files into `images` directory and reference them as below from markdown:
```
![alt text]({{site.baseurl}}/images/path/of/file.png)
```