adding skeleton
diff --git a/Berksfile b/Berksfile
new file mode 100644
index 0000000..ea00c38
--- /dev/null
+++ b/Berksfile
@@ -0,0 +1 @@
+metadata
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
new file mode 100644
index 0000000..edb2cdc
--- /dev/null
+++ b/CHANGELOG.md
@@ -0,0 +1,13 @@
+app-umbraco CHANGELOG
+=====================
+
+This file is used to list changes made in each version of the app-umbraco cookbook.
+
+0.1.0
+-----
+- [your_name] - Initial release of app-umbraco
+
+- - -
+Check the [Markdown Syntax Guide](http://daringfireball.net/projects/markdown/syntax) for help with Markdown.
+
+The [Github Flavored Markdown page](http://github.github.com/github-flavored-markdown/) describes the differences between markdown on github and standard markdown.
diff --git a/README.md b/README.md
index cfa76c6..cd7d072 100644
--- a/README.md
+++ b/README.md
@@ -1,45 +1,44 @@
app-umbraco Cookbook
====================
-TODO: Enter the cookbook description here.
+Installs Umbraco CMS on Windows
-e.g.
-This cookbook makes your favorite breakfast sandwhich.
+and makes your favorite wheat-free breakfast sandwhich.
Requirements
------------
-TODO: List your cookbook requirements. Be sure to include any requirements this cookbook has on platforms, libraries, other cookbooks, packages, operating systems, etc.
-
-e.g.
-#### packages
-- `toaster` - app-umbraco needs toaster to brown your bagel.
+needs a windoze
Attributes
-----------
-TODO: List you cookbook attributes here.
+---------
-e.g.
-#### app-umbraco::default
-<table>
- <tr>
- <th>Key</th>
- <th>Type</th>
- <th>Description</th>
- <th>Default</th>
- </tr>
- <tr>
- <td><tt>['app-umbraco']['bacon']</tt></td>
- <td>Boolean</td>
- <td>whether to include bacon</td>
- <td><tt>true</tt></td>
- </tr>
-</table>
+['mysql']['version'] = "5.6.14.0"
+['mysql']['checksum'] = "7ca554bcda5d859e71b97f2ed13ec42b"
+
+['mysql']['installer_file'] = \
+ "mysql-installer-community-#{node['mysql']['version']}.msi"
+
+['mysql']['base_url'] =\
+ "http://dev.mysql.com/get/Downloads/MySQLInstaller/"
+
+['mysql']['url'] = \
+ "#{node['mysql']['base_url']}/#{node['mysql']['installer_file']}"
+
+['mysql']['basedir'] = \
+ "#{ENV['SYSTEMDRIVE']}\\Program Files (x86)\\MySQL\\"
+
+ ['mysql']['installer_cli'] = %Q[
+ c:\\Program\ Files\ (x86)\\mySql\\MySQL\ Installer\\MySQLInstallerConsole.exe
+ --config=mysql-server-5.6-winx64:passwd=root
+ --product=mysql-server-5.6-winx64
+ --catalog=mysql-5.6-winx64
+ --action=install
+ --type=full
+ --nowait ]
Usage
-----
#### app-umbraco::default
-TODO: Write usage instructions for each cookbook.
-e.g.
Just include `app-umbraco` in your node's `run_list`:
```json
@@ -53,7 +52,6 @@
Contributing
------------
-TODO: (optional) If this is a public cookbook, detail the process for contributing. If this is a private cookbook, remove this section.
e.g.
1. Fork the repository on Github
@@ -65,4 +63,4 @@
License and Authors
-------------------
-Authors: TODO: List authors
+Authors: Azul
diff --git a/attributes/default.rb b/attributes/default.rb
new file mode 100644
index 0000000..2eebf3e
--- /dev/null
+++ b/attributes/default.rb
@@ -0,0 +1,29 @@
+
+override['mysql']['version'] = "5.6.14.0"
+override['mysql']['checksum'] = "7ca554bcda5d859e71b97f2ed13ec42b"
+
+override['mysql']['installer_file'] = \
+ "mysql-installer-community-#{node['mysql']['version']}.msi"
+
+override['mysql']['base_url'] =\
+ "http://dev.mysql.com/get/Downloads/MySQLInstaller/"
+
+override['mysql']['url'] = \
+ "#{node['mysql']['base_url']}/#{node['mysql']['installer_file']}"
+
+override['mysql']['basedir'] = \
+ "#{ENV['SYSTEMDRIVE']}\\Program Files (x86)\\MySQL\\"
+
+ override['mysql']['installer_cli'] = %Q[
+ c:\\Program\ Files\ (x86)\\mySql\\MySQL\ Installer\\MySQLInstallerConsole.exe
+ --config=mysql-server-5.6-winx64:passwd=root
+ --product=mysql-server-5.6-winx64
+ --catalog=mysql-5.6-winx64
+ --action=install
+ --type=full
+ --nowait ]
+
+default['iis']['accept_eula'] = true
+
+default['windows']['allow_pending_reboots'] = true
+default['windows']['reboot_timeout'] = 60
diff --git a/metadata.rb b/metadata.rb
new file mode 100644
index 0000000..da7625a
--- /dev/null
+++ b/metadata.rb
@@ -0,0 +1,15 @@
+name 'app-umbraco'
+maintainer 'YOUR_COMPANY_NAME'
+maintainer_email 'YOUR_EMAIL'
+license 'All rights reserved'
+description 'Installs/Configures app-umbraco'
+long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
+version '0.1.0'
+
+depends 'wrappers'
+depends 'windows'
+depends 'ms_dotnet4'
+depends 'ms_dotnet45'
+depends 'webpi'
+depends 'mysql'
+depends '7-zip'
diff --git a/recipes/default.rb b/recipes/default.rb
new file mode 100644
index 0000000..f4d85d8
--- /dev/null
+++ b/recipes/default.rb
@@ -0,0 +1,24 @@
+#
+# Cookbook Name:: app-umbraco
+# Recipe:: default
+#
+# Copyright 2013, YOUR_COMPANY_NAME
+#
+# All rights reserved - Do Not Redistribute
+#
+#
+include_recipe "windows"
+include_recipe "ms_dotnet4"
+# wrapping ms_dotnet45, as it was failling to download the goods
+include_recipe "wrappers::ms_dotnet45"
+include_recipe "wrappers::install-IIS-roles"
+include_recipe "7-zip"
+include_recipe "webpi"
+# opscode mysql cookbook is failling during compilation phase on windows
+# rather quickly write my own than looking into the errors upstream
+include_recipe "wrappers::install-mysql"
+include_recipe "wrappers::install-umbraco"
+include_recipe "windows::reboot_handler"
+
+
+