https://github.com/codejourneymen/drush-make
My drush make files and scripts to build a site quickly (in Drupal 6 and Drupal 7) with my commonly used modules turned on and some basic configuration
https://github.com/codejourneymen/drush-make
Last synced: 11 months ago
JSON representation
My drush make files and scripts to build a site quickly (in Drupal 6 and Drupal 7) with my commonly used modules turned on and some basic configuration
- Host: GitHub
- URL: https://github.com/codejourneymen/drush-make
- Owner: CodeJourneymen
- Created: 2013-05-21T17:48:41.000Z (about 13 years ago)
- Default Branch: master
- Last Pushed: 2015-08-31T23:35:33.000Z (almost 11 years ago)
- Last Synced: 2025-02-27T03:48:03.833Z (over 1 year ago)
- Language: Shell
- Size: 149 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
drush-make
==========
My drush make files and scripts to build a site quickly (in Drupal 6 and Drupal 7) with my commonly used modules turned on and some basic configuration
You can spin up a D6 or D7 site quickly to test that module you just found.
`./make_d7_site [dbanme] [password] [email]`
It will create a new site in this directory called [dbname] with the database name also of [dbname]
The admin users is superuser
The admin password is [password]
The admin email is [email]
The script also does a drush site-install, so you can immediately go to the site.
The mysql username/password are hard coded to root/root in the shell script you will have to edit to match you mysql username/password.
Also included is my gitconfig file.
Add anything in this you like to your own ~/.gitconfig file
most useful is
`$ git log`
which pretty prints out the git log in a consise way.
And when you patch some files (that you don't want to commit, but don't want to show up as changed al the time) you can use ignore/unignore/ignored
`$ git ignore [file]`
treats a file like it's unchanged. i.e. won't make your repo dirty
`$ git unignore [file]`
makes you previously ignored file now be treated normally by git i.e. if its changed, git statsu will now report it.
`$ git ignored`
Lists all the files you have used $git ignore on.