Skip to content

Latest commit

 

History

History
38 lines (21 loc) · 722 Bytes

README.md

File metadata and controls

38 lines (21 loc) · 722 Bytes

Kocha Build Status

A convenient web application framework for Go

Getting started

  1. install the framework:

     go get -u github.com/naoina/kocha
    

    And command-line tool

     go get -u github.com/naoina/kocha/kocha
    
  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