Created
July 13, 2012 17:31
-
-
Save Stuk/3106155 to your computer and use it in GitHub Desktop.
Creating a new application with Montage minit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ ../montage/tools/minit/minit app hello | |
* Clone Montage to your app: | |
git clone [email protected]:Motorola-Mobility/montage.git hello/node_modules/montage | |
* or add it as a submodule: | |
cd hello | |
git init | |
git submodule add [email protected]:Motorola-Mobility/montage.git node_modules/montage | |
Template expansion successful! | |
$ ls | |
hello | |
$ cd hello/ | |
$ ls | |
README.markdown assets index.html package.json ui | |
$ git init | |
Initialized empty Git repository in /Users/jqxc46/Documents/projects/test/hello/.git/ | |
$ git submodule add [email protected]:Motorola-Mobility/montage.git node_modules/montage | |
Cloning into node_modules/montage... | |
remote: Counting objects: 23512, done. | |
remote: Compressing objects: 100% (7136/7136), done. | |
remote: Total 23512 (delta 15724), reused 23196 (delta 15467) | |
Receiving objects: 100% (23512/23512), 9.64 MiB | 728 KiB/s, done. | |
Resolving deltas: 100% (15724/15724), done. | |
$ ls | |
README.markdown assets index.html node_modules package.json ui | |
$ ls ui/ | |
main.reel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment