https://github.com/coloredcow/chemex-club
Our :heart: for :coffee:
https://github.com/coloredcow/chemex-club
chemex coffee grunt wordpress wordpress-theme
Last synced: 3 months ago
JSON representation
Our :heart: for :coffee:
- Host: GitHub
- URL: https://github.com/coloredcow/chemex-club
- Owner: ColoredCow
- Created: 2018-06-25T12:37:41.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-06-25T15:13:11.000Z (almost 7 years ago)
- Last Synced: 2025-01-03T03:32:24.171Z (5 months ago)
- Topics: chemex, coffee, grunt, wordpress, wordpress-theme
- Language: PHP
- Homepage: https://chemexclub.coloredcow.com
- Size: 18.7 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wordpress Installation ColoredCow
## Prerequisites
1. Composer
2. NPM
3. Grunt## Installation
1. Fork this master repository.
* Create a local clone for the forked repository.
* Avoid creating a sync with the master repository.
* [Know more on how to **fork a repo**](https://help.github.com/articles/fork-a-repo/)
2. On your local machine, Run `composer install` in the root directory using the CLI.
3. Run `npm install` on */public/wp-content/themes/ColoredCow/* directory.
4. Run `grunt` to check if the grunt installation worked. You should see a style.css and main.js inside your theme.
5. Secure your WordPress installation.
* Rename wp-sample-config.php in *wordpress-init/public/* directory to wp-config.php.
* Generate a new set of auth keys. [Generate](https://api.wordpress.org/secret-key/1.1/salt/)
* 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 WP_ROOT for your development environment.
```
define('WP_ROOT', '/put_your_project_name_here/public');
```
* Set the Debug Mode to true for your development environment.
```
define('WP_DEBUG', true);
```6. Configure the database.
* Create a new database for your project with MySql.
* Update configurations for newly created database in *public/wp-config.php*.
```
define('DB_NAME', '');
define('DB_USER', '');
define('DB_PASSWORD', '');
define('DB_HOST', '');
define('DB_CHARSET', 'utf8');
```* All geared up for the famous [5 minute install](https://codex.wordpress.org/Installing_WordPress).