From 8a4f3de023d68d588962e8441dc5775bc2494c2a Mon Sep 17 00:00:00 2001 From: Kevin Giszewski Date: Fri, 17 Jan 2014 10:49:43 -0500 Subject: [PATCH 1/4] Update README.md --- README.md | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a6e5a9e..9999323 100644 --- a/README.md +++ b/README.md @@ -17,9 +17,12 @@ Archetype Add `--touch` to either command to automatically touch the web.config on a deploy -## Installation ## +## Installation +1) Install the package through Umbraco. -To use this package right from this repo you will need to manually download and copy the files into the appropriate spot: +OR + +2) To use this package right from this repo you will need to manually download and copy the files into the appropriate spot: ###/App_Plugins### @@ -35,8 +38,8 @@ Your /App_Plugins should contain this structure: -- archetype.html ###/bin### -- Drop the Imulus.Archetype.dll in the /bin of your Umbraco install (this dll only handles template helpers, PVC's at present) -- You will have to build this yourself or download it here. +- Drop the Archetype.dll in the /bin of your Umbraco install (this dll only handles template helpers, PVC's at present) +- You will have to build this yourself. ## Prevalue Configs ## From 1443149264a0793e6d5369277acf71dc779a8c59 Mon Sep 17 00:00:00 2001 From: leekelleher Date: Fri, 17 Jan 2014 16:42:13 +0000 Subject: [PATCH 2/4] Added 'repository' field to `packages.json`. This removes npm's nag warning. --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 89a6a1c..5ada328 100644 --- a/package.json +++ b/package.json @@ -21,5 +21,9 @@ "grunt-touch": "~0.1.0", "fs-extra": "~0.8.1", "grunt-msbuild": "~0.1.9" + }, + "repository": { + "type": "git", + "url": "https://github.com/imulus/Archetype.git" } } From 8a42c6fdbddc0abe940e6127ae7908c3f9a40479 Mon Sep 17 00:00:00 2001 From: Kevin Giszewski Date: Fri, 17 Jan 2014 12:04:03 -0500 Subject: [PATCH 3/4] Update README.md --- README.md | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 9999323..0b7f9bb 100644 --- a/README.md +++ b/README.md @@ -22,24 +22,26 @@ Add `--touch` to either command to automatically touch the web.config on a deplo OR -2) To use this package right from this repo you will need to manually download and copy the files into the appropriate spot: +2) Deploy with Grunt (see above). Recommended if you wish to extend this repo. -###/App_Plugins### +OR -Your /App_Plugins should contain this structure: +3) Not recommended but a down and dirty way is to manually download and copy the files into the appropriate spot: + +Your /App_Plugins (and /bin) should contain this structure: /App_Plugins - package.manifest - /css -- archetype.css - /js - -- archetype.js (our Grunt script concats the controller.js and all directives into one file, you may have to do so manually) + -- archetype.js (our Grunt script concats the controller.js/config.controller.js, services and all directives into one file, you will have to do so manually) + -- config.views.js - /views -- archetype.html - -###/bin### -- Drop the Archetype.dll in the /bin of your Umbraco install (this dll only handles template helpers, PVC's at present) -- You will have to build this yourself. + -- archetype.config.html + /bin + -- archectype.dll (you'll have to build it) ## Prevalue Configs ## From eb2cbf7a8f4cbf175a669884d312e0662e1b75d1 Mon Sep 17 00:00:00 2001 From: Kevin Giszewski Date: Fri, 17 Jan 2014 12:16:35 -0500 Subject: [PATCH 4/4] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 0b7f9bb..9f4208f 100644 --- a/README.md +++ b/README.md @@ -18,17 +18,17 @@ Archetype Add `--touch` to either command to automatically touch the web.config on a deploy ## Installation -1) Install the package through Umbraco. +1) Install the package through the Umbraco package installer. Recommended if you want to just see the packaged version. OR -2) Deploy with Grunt (see above). Recommended if you wish to extend this repo. +2) Deploy with Grunt (see above). Recommended if you wish to extend this repo as this will inject this project into an existing v7 Umbraco install. OR 3) Not recommended but a down and dirty way is to manually download and copy the files into the appropriate spot: -Your /App_Plugins (and /bin) should contain this structure: +Your /App_Plugins and /bin should contain this structure: /App_Plugins - package.manifest @@ -41,7 +41,7 @@ Your /App_Plugins (and /bin) should contain this structure: -- archetype.html -- archetype.config.html /bin - -- archectype.dll (you'll have to build it) + -- archetype.dll (you'll have to build it) ## Prevalue Configs ##