github.com/woremacx/kocha@v0.7.1-0.20150731103243-a5889322afc9/README.md (about)

     1  # Kocha [![Build Status](https://travis-ci.org/naoina/kocha.svg?branch=master)](https://travis-ci.org/naoina/kocha)
     2  
     3  A convenient web application framework for [Go](http://golang.org/)
     4  
     5  **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](http://labix.org/gopkg.in) is highly recommended.**
     6  
     7  ## Features
     8  
     9  * Batteries included
    10  * All configurations are in Go's syntax
    11  * Generate an All-In-One binary
    12  * Compatible with `net/http`
    13  
    14  ## Requirement <a id="Requirement"></a>
    15  
    16  * Go 1.3 or later
    17  
    18  ## Getting started
    19  
    20  1. install the framework:
    21  
    22          go get -u github.com/woremacx/kocha
    23  
    24      And command-line tool
    25  
    26          go get -u github.com/woremacx/kocha/cmd/...
    27  
    28  2. Create a new application:
    29  
    30          kocha new myapp
    31  
    32      Where "myapp" is the application name.
    33  
    34  3. Change directory and run the application:
    35  
    36          cd myapp
    37          kocha run
    38  
    39      or
    40  
    41          cd myapp
    42          go build -o myapp
    43          ./myapp
    44  
    45  ## Documentation
    46  
    47  See http://naoina.github.io/kocha/ for more information.
    48  
    49  ## License
    50  
    51  Kocha is licensed under the MIT