Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #20

Merged
1 commit merged into from
Oct 19, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 21 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# goal
Toolkit for high productivity web development in Go language.
# Goal
Goal is a toolkit for high productivity web development in Go language.

Goal, being mostly inspired by [Revel Framework](https://github.com/revel/revel)
and its discussions, is built around the concept of
Expand All @@ -15,7 +15,25 @@ At the same time goal is very customizable (you can bring your own router, templ
and any other component). But that's without prejudice to the easiness and seamless of experience
thanks to good defaults.

Status of the project: **PoC** (not ready for use in the wild).
# Getting Started

1. Install Goal toolkit:

go get -u github.com/colegion/goal

2. Create a new skeleton application:

goal new github.com/$username/$project

3. Start a watcher / task runner:

goal run github.com/$username/$project

* [Documentation](http://colegion.github.io/goal)

# Status

**PoC** (not ready for use in the wild).

[![GoDoc](https://godoc.org/github.com/colegion/goal?status.svg)](https://godoc.org/github.com/colegion/goal)
[![Build Status](https://travis-ci.org/colegion/goal.svg?branch=master)](https://travis-ci.org/colegion/goal)
Expand Down