EVOLUTION-NINJA
Edit File: README.md
# About Initial Config - Grab the latest database - In `sites/default/` directory - Create `setting.php` and paste following code ```` <?php /** * REMEBER THIS FILE WILL BE IGNORED BY GIT * If you need to make changes to be replicated on all env edit the config/base.settings.php */ $databases = array ( 'default' => array ( 'default' => array ( 'database' => '<DBNAME>', 'username' => '<UNAME>', 'password' => '<PASSWORD>', 'host' => 'localhost', 'port' => '', 'driver' => 'mysql', 'prefix' => '', ), ), ); // Include your Environment file here require_once __DIR__ . "/config/local.settings.php"; // Some custom config if you like // $conf['environment_indicator_overwritten_color'] = 'hotpink'; ```` - Run `drush fra -y` - Run `drush updatedb -y` - Run `drush fra -y` - You should be set now --- # Compiling theme stylesheets - The new theme lives in `/sites/all/theme/cordinerking2018` - This is Zen 7.x.6.2 based theme - Basically everything is setup all you have to do is run - `npm install` & - `gulp watch` above directory - Theme comes with - SASS, BrowserSync, KSS Etc. # Theming workflow - Please refere to documentation as bleow: - http://johnalbin.github.io/zen-style-guide/styleguide/ # Deploying with deploy.sh ## Add execute permission if needed - `chmod +x deploy.sh` - Run `deploy.sh` file with argument of branch - i.e., `deploy.sh master` ``` ~/deploy/deploy.sh master | tee rsynclog_$(date '+%Y%m%d%s').log ```