/rigby

Custom Blogging Platform

Primary LanguageGo

Rigby

Rigby is a micro-blogging platform made in Go.

To set up your own instance of rigby, you need a few things:

Config file

An example config.json file:

	{
	"database": {
		"username": "luke",
		"password": "mypassword1",
		"database": "rigby"
	}, 
	"server": {
		"port": 3000,
		"origin": "localhost" 
	}
}

MySQL server

You'll need a MySQL server that has utf8mb4 encoding enabled. Currently there are no schema files for the MySQL server setup. Those should be coming soon.

Golang compiler

You'll also need the Go Programming Language tools installed in order to compile the project.