Skip to content

woremacx/kocha

 
 

Repository files navigation

Kocha Build Status

A convenient web application framework for Go

NOTE: Kocha is still under development, so API might be changed in future. If you still want to use the current version of Kocha, use of a version control such as gopkg.in is highly recommended.

Features

  • Batteries included
  • All configurations are in Go's syntax
  • Generate an All-In-One binary
  • Compatible with net/http

Requirement

  • Go 1.3 or later

Getting started

  1. install the framework:

     go get -u github.com/woremacx/kocha
    

    And command-line tool

     go get -u github.com/woremacx/kocha/cmd/...
    
  2. Create a new application:

     kocha new myapp
    

    Where "myapp" is the application name.

  3. Change directory and run the application:

     cd myapp
     kocha run
    

    or

     cd myapp
     go build -o myapp
     ./myapp
    

Documentation

See http://naoina.github.io/kocha/ for more information.

License

Kocha is licensed under the MIT

About

A convenient web application framework for Go

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.7%
  • Other 0.3%