Initial commit

pull/4/head
Noah 2017-10-07 20:13:31 -07:00
commit 3d30a58ccb
3 changed files with 37 additions and 0 deletions

0
.gitignore vendored Normal file
View File

16
LICENSE.txt Normal file
View File

@ -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.

21
README.md Normal file
View File

@ -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.