Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 831 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 831 Bytes

Dependencies

Install the client dependencies.

cd bbtk-client
npm install
npm install -g grunt-cli

Maven commands

mvn gae:run     #run local instance
mvn gae:deploy  #deploy to gae

By default the client js will be concatinated and minified. If you don't want to concat and minify the js use the dev profile.

mvn gae:run -Pdev     #run local instance
mvn gae:deploy -Pdev  #deploy to gae

Development Environmant

For now the easiest thing to do is to start the gae dev server then start the client dev watch to copy changes into the server dir.

cd bbtk-server
mvn gae:run -Pdev

cd bbtk-client
grunt dev