Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jorgechato/burrow
Go API First eco-system. Design to focus on writing your app without needing to reinvent the wheel.
https://github.com/jorgechato/burrow
go golang
Last synced: 27 days ago
JSON representation
Go API First eco-system. Design to focus on writing your app without needing to reinvent the wheel.
- Host: GitHub
- URL: https://github.com/jorgechato/burrow
- Owner: jorgechato
- Created: 2018-05-22T07:58:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-01T09:15:48.000Z (about 6 years ago)
- Last Synced: 2024-11-07T10:46:07.204Z (3 months ago)
- Topics: go, golang
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Burrow
**No longer under maintenance, moving into graphQL systems.**
Project inspired in django and buffalo.
Burrow is a Go API First eco-system (not a framework jet). Design to focus on
writing your app without needing to reinvent the wheel.## Installation
```bash
$ go get -u -v github.com/jorgechato/burrow/burrow
```## Start a new Project
It's a piece of cake, this is what you should think of start an API First
project in Go. The generator is the key of success.```bash
$ burrow startproject
```## Start an App
Modularity is what makes a pleasure to work in different projects. The
applications are single packages you can use not only in your current project
but export and use them in as many projects as you want. Type once and use it
anywhere.```bash
$ burrow startapp
```