Create basic server

Includes app config and some initialization
This commit is contained in:
Matt Baer
2018-10-15 14:44:15 -04:00
parent 343f67dc97
commit 16473c97b7
6 changed files with 233 additions and 0 deletions

1
cmd/writefreely/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
writefreely

9
cmd/writefreely/main.go Normal file
View File

@@ -0,0 +1,9 @@
package main
import (
"github.com/writeas/writefreely"
)
func main() {
writefreely.Serve()
}