Skip to content

Latest commit

 

History

History
40 lines (21 loc) · 836 Bytes

README.md

File metadata and controls

40 lines (21 loc) · 836 Bytes

The Angular-Beego generator

A Yeoman generator for AngularJS and Beego.

Beego is an open source framework to build and develop your applications in the Go way

Installation

Install Git, node.js, and Go.

Install Yeoman:

npm install -g yo

Install the Angular-Go-Martini generator:

npm install -g generator-angular-beego

Creating a Beego service

In a new directory, generate the service:

yo angular-beego

Get the dependencies:

go get

Run the service:

Terminal 1 grunt server

Terminal 2 bee run

Your service will run at http://localhost:8080.

The Grunt server supports hot reloading of client-side HTML/CSS/Javascript file changes.