Modern pastebin written in golang
Go to file
Eliot Whalan c8af94296e Merge pull request #9 from patchon/master
Initial commit of Pastebin fork
2016-12-20 07:09:50 +10:00
assets Merge branch 'master' into master 2016-12-20 07:02:49 +10:00
.gitignore Initial commit of Pastebin fork 2016-12-19 19:43:37 +01:00
.travis.yml Update travis ci 2016-07-15 14:27:11 +10:00
LICENSE.md Rename LICENSE file 2016-07-14 11:57:22 +10:00
Makefile Initial commit of Pastebin fork 2016-12-19 19:43:37 +01:00
README.md Update README.md 2016-10-20 10:29:31 +10:00
config.json Initial commit of Pastebin fork 2016-12-19 19:43:37 +01:00
database.sql Initial commit of Pastebin fork 2016-12-19 19:43:37 +01:00
highlighter-wrapper.py Initial commit of Pastebin fork 2016-12-19 19:43:37 +01:00
pastebin.go Initial commit of Pastebin fork 2016-12-19 19:43:37 +01:00

README.md

#Golang Pastebin Build Status GoDoc Go Report Card MITlicensed

Modern self-hosted pastebin service with a restful API.

Motivation

Many Pastebin services exist but all are more complicated than they need to be. That is why I decided to write a pastebin service in golang.

paste

Getting started

Prerequisities

  • pygmentize
  • go
  • mariadb
pip install pygmentize
sudo yum install -y go mariadb-server mariadb

Installing

  • Please note this assumes you have Mariadb and Go already setup.
  • go get github.com/ewhal/Pastebin
  • make
  • mysql -u root -p
  • CREATE USER 'paste'@'localhost' IDENTIFIED BY 'password';
  • CREATE database paste;
  • GRANT ALL PRIVILEGES ON paste . * TO 'paste'@'localhost';
  • FLUSH PRIVILEGES;
  • quit;
  • mysql -u paste -p paste < database.sql
  • cp config.example.json config.json
  • nano config.json
  • Configure port and database details

License

This project is licensed under the MIT License - see the LICENSE.md file for details