- Composer
- NPM
- Grunt
-
Fork the master repository. Know more on how to fork a repo
-
Create a local clone for the forked repository.
-
Avoid creating a sync with the master repository.
-
-
On your local machine, Run
composer install
in the root directory using the CLI. -
Run
npm install
on/wp-content/themes/tides/
directory. We are usingtides
as default theme. -
Run
grunt
to check if the grunt installation worked. You should see a style.css and main.js inside your theme. -
Secure your WordPress installation.
-
Rename
wp-sample-config.php
towp-config.php
. -
Generate a new set of auth keys.
-
Replace the auth key code in
wp-config.php
with newly generated set of auth keys.define('AUTH_KEY', ''); define('SECURE_AUTH_KEY', ''); define('LOGGED_IN_KEY', ''); define('NONCE_KEY', ''); define('AUTH_SALT', ''); define('SECURE_AUTH_SALT', ''); define('LOGGED_IN_SALT', ''); define('NONCE_SALT', '');
-
Change the table prefix as you need in
wp-config.php
.
-
-
Configure the database.
-
Create a new MySql database for tides website.
-
Update configurations for newly created database in
wp-config.php
.define('DB_NAME', ''); define('DB_USER', ''); define('DB_PASSWORD', ''); define('DB_HOST', ''); define('DB_CHARSET', 'utf8');
-