Skip to content

Commit

Permalink
Added hugo
Browse files Browse the repository at this point in the history
  • Loading branch information
gen1us2k committed Jan 24, 2016
1 parent 0da30f5 commit 0215bac
Show file tree
Hide file tree
Showing 34 changed files with 71 additions and 5,049 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
public
102 changes: 0 additions & 102 deletions 404.html

This file was deleted.

13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
build:
hugo --theme=hugo-theme-air

watch:
open http://127.0.0.1:1313
hugo server --buildDrafts --watch --theme=hugo-theme-air

init:
brew update
brew install hugo

upload: build
gsutil -m cp -r public/* gs://meshbird.com
4 changes: 4 additions & 0 deletions config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
baseurl = "http://meshbird.com"
languageCode = "en-us"
title = "MeshBird"
theme = "hugo-theme-air"
52 changes: 52 additions & 0 deletions content/post/meshbird.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
+++
author = ""
comments = true
date = "2016-01-24T23:38:54+06:00"
image = ""
menu = ""
share = true
slug = "post-title"
tags = ["tag1", "tag2"]
title = "meshbird"

+++


DISCLAIMER: I dumped a lot of code without much documentation and optimization.
It needs to be cleaned up and better organized. Further work will be continued at
https://github.com/meshbird/meshbird.

<br>

# Meshbird

Meshbird - distributed private networking. [Twitter](https://twitter.com/meshbird)


![MeshBird](https://avatars1.githubusercontent.com/u/16837838?v=3&s=600)

## Intro

Meshbird create distributed private networking between servers, containers, virtual machines and any computers in different datacenters, different countries, different cloud providers. All traffic transmit directly to recepient peer without passing any gateways. Meshbird do not require any centralized servers. Meshbird is absolutly decentralized distributed private networking.

For example, user can create private network between DigitalOcean's droplets in each datacenter and link it together by executing one command. All traffic will be encrypted with strong AES-256.

## Quick Start

### Install

```bash
$ go get github.com/gophergala2016/meshbird
````

### Generate new network secret key

```bash
$ meshbird new
```

### Join to the private network with interface meshbird0

```bash
$ MESHBIRD_KEY="<key>" meshbird join
```
Loading

0 comments on commit 0215bac

Please sign in to comment.