From 3d30a58ccb64ef53dd22a9a114f0a1170ba4e0cc Mon Sep 17 00:00:00 2001 From: Noah Petherbridge Date: Sat, 7 Oct 2017 20:13:31 -0700 Subject: [PATCH] Initial commit --- .gitignore | 0 LICENSE.txt | 16 ++++++++++++++++ README.md | 21 +++++++++++++++++++++ 3 files changed, 37 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE.txt create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..af35052 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,16 @@ +Kirsle's Blog +Copyright (C) 2017 Noah Petherbridge + +This program is free software; you can redistribute it and/or +modify it under the terms of the GNU General Public License +as published by the Free Software Foundation; either version 2 +of the License, or (at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with this program; if not, write to the Free Software +Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/README.md b/README.md new file mode 100644 index 0000000..a3c6177 --- /dev/null +++ b/README.md @@ -0,0 +1,21 @@ +# Blog + +This is the source code that will soon power [kirsle.net](https://www.kirsle.net/). + +# Setup + +```bash +# If you're new to Go, set your GOPATH. +export GOPATH="${HOME}/go" + +# Clone this repository to your go src folder. +git clone https://github.com/kirsle/blog ~/go/src/github.com/kirsle/blog +cd ~/go/src/github.com/kirsle/blog + +# Run the server +make run +``` + +# License + +MIT.