Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How are people using Yeoman?

I've been playing around with Yeoman and it's pretty great. I'm wondering how people are integrating the resulting frontend app with backends?

Are you keeping them as separate code bases that potentially run on separate servers? Are you stuffing the whole directory in a rails public folder and pointing the root route at index.html buried in there?

Up until now I've only ever used helpful gems to integrate backbone or ember into the rails asset pipeline. I could certainly move various files into the assets directory of a rails app but that kinda defeats the purpose of Yeoman.

like image 266
kjs3 Avatar asked Sep 20 '12 23:09

kjs3


Video Answer


1 Answers

So far I only used it to make and maintain the frontend app, using ajax to get all the information needed from the backend deployed as another project (web service).

like image 159
ravenlp Avatar answered Sep 17 '22 20:09

ravenlp