An open API service indexing awesome lists of open source software.

https://github.com/actor-framework/actor-framework.github.io

Content for www.actor-framework.org.
https://github.com/actor-framework/actor-framework.github.io

Last synced: 5 months ago
JSON representation

Content for www.actor-framework.org.

Awesome Lists containing this project

README

          

About
=====

This repository contains the sources for CAF's Dev Blog.

Jekyll Setup for Local Testing
==============================

You will need to install ruby, nodejs, rdiscount, and jekyll:

```
$PKG_MGR install ruby nodejs
gem install jekyll rdiscount jekyll-paginate
```

To browse the blog locally on port 4000, run:

```
jekyll serve --watch
```

Create a New Blog Post
======================

To add a new blog post, you will need to create a new file with current date
and post title as file name (all lowercase and using `-` instead of
whitespaces). The new file must contain a Jekyll header followed by Markdown
formatted text. To get the boilerplate code out of the way, you can use the
file `template.md`:

```
cp template.md _posts/$(date +%F)-awesome-news.md
vim $(date +%F)-awesome-news.md
```

Fill out the `title`, `author`, and `tags` fields accordingly. In case you are
not registered as author yet, add your author short name (as key), display
name, email, and GitHub account name to the file `_config.yml`.