Skip to content
This repository has been archived by the owner on Jul 15, 2019. It is now read-only.

Releases: YahooArchive/mojito-cli-create

Routing Paths for Anonymous Mojit Instances Updated in Application Archetypes

04 Mar 02:16
Compare
Choose a tag to compare

When users create a new application, they should be able to create a mojit and then go to the URL http://localhost:8666/:mojit/:action, where :mojit is the name of the mojit instance (i.e., @myMojit) and action is the mojit method: @myMojit/index => @myMojit.index.

A correction was also made in the instructions for running apps that is displayed in the index view for the default app.

v0.1.1

27 Feb 18:32
Compare
Choose a tag to compare

This release contains updated archetypes that are compatible with mojito-0.9.x release.

This package will be installed as a dependency of mojito-cli-0.2.x.

v0.0.8

17 Jan 23:50
Compare
Choose a tag to compare

This release includes the demo archetype for creating demo apps. The demo archetype comes with the quickstartguide demo app. So, by running mojito create demo quickstartguide qs, you will create the demo app qs, which you can use to view Mojito documentation and use as a reference app. You can add your own demo apps to archetypes/demo as well.

Also, the mojit module and class naming syntax has changed to be closer to that of YUI modules and classes. For example, when you create the mojit Map, the module will be map for the controller, map-model for the model, and map-binder-index for the binder. The class names would be Map, MapModel, and MapBinderIndex.