Skip to content

Commit

Permalink
getting into vanilla app state
Browse files Browse the repository at this point in the history
  • Loading branch information
boztek committed Nov 23, 2010
1 parent c9ca182 commit 66de0b4
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 24 deletions.
15 changes: 15 additions & 0 deletions README
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
DRUPAL WEB APP DEVELOPMENT STARTER KIT
======================================

To use this example starter kit to build a drupal web app using drush make:

1. rename newsite.make and newsite.profile to match the application name.
2. remove .git folder and create new repo and public repo and push code there
e.g.
rm -rf .git
git init
git add remote origin git@myrepo.com/app.git
git push origin master
3. add git repo to build.make and rename newsite to actual app name
4. edit app.make and app.profile files basic info, commit and push
5. bootstrap.sh and start developing
37 changes: 16 additions & 21 deletions newsite.make
Original file line number Diff line number Diff line change
@@ -1,30 +1,25 @@
core = 6.x

; Contrib (include common 'outer core' in a make file)
projects[cck][subdir] = contrib
projects[cck][version] = 2.8

projects[views][subdir] = contrib
projects[views][version] = 2.11

projects[ctools][subdir] = contrib

projects[panels][subdir] = contrib

projects[admin_menu][subdir] = contrib

projects[jquery_ui][subdir] = contrib
projects[jquery_ui][version] = 1.4
libraries[jquery_ui][download][type] = "get"
libraries[jquery_ui][download][url] = "http://jquery-ui.googlecode.com/files/jquery.ui-1.6.zip"
libraries[jquery_ui][destination] = "modules/contrib/jquery_ui"
libraries[jquery_ui][directory_name] = "jquery.ui"
;projects[cck][subdir] = contrib
;projects[cck][version] = 2.8
;projects[views][subdir] = contrib
;projects[views][version] = 2.11
;projects[ctools][subdir] = contrib
;projects[panels][subdir] = contrib
;projects[admin_menu][subdir] = contrib
;projects[jquery_ui][subdir] = contrib
;projects[jquery_ui][version] = 1.4
;libraries[jquery_ui][download][type] = "get"
;libraries[jquery_ui][download][url] = "http://jquery-ui.googlecode.com/files/jquery.ui-1.6.zip"
;libraries[jquery_ui][destination] = "modules/contrib/jquery_ui"
;libraries[jquery_ui][directory_name] = "jquery.ui"

; Libraries

; Custom (if splitting custom module to separate repo for reusability)

; Base themes
projects[zen][type] = theme
projects[zen][subdir] = contrib
projects[zen][version] = 2
;projects[zen][type] = theme
;projects[zen][subdir] = contrib
;projects[zen][version] = 2
4 changes: 1 addition & 3 deletions newsite.profile
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,7 @@
* An array of modules to enable.
*/
function newsite_profile_modules() {
return array('color', 'comment', 'help', 'menu', 'taxonomy', 'dblog',
'ctools', 'page_manager', 'panels', 'admin_menu',
'jquery_ui', 'panels_ipe',);
return drupal_required_modules();
}

/**
Expand Down

0 comments on commit 66de0b4

Please sign in to comment.