/aroundafterdark

A travel and food WordPress site

Primary LanguagePHPGNU General Public License v3.0GPL-3.0

Around After Dark

A WordPress site for travel and food after the sun sets.

Setup Local Environment

  1. Install PHP 7.4, Composer, and MySQL to your system first.

  2. Run the background service of MySQL.

brew services start mysql
  1. Run the MySQL prompt.
mysql -u root
  1. Create the database for WordPress.
CREATE DATABASE aroundafterdark;
  1. Check if your database was successfully created.
SHOW DATABASES;
  1. Go to the theme folder wp-content/themes/after-dark and install the theme dependencies. You can view the list of dependencies in package.json located in the theme's folder.
npm install
  1. Run Sass to automate compiling of the theme's style.
npm run sass
  1. Run Parcel to automate rebuilding of the theme's JavaScript files.
npm run watch
  1. Run the PHP server.
php -S localhost:8000
  1. Install PHP_CodeSniffer using Composer.
composer global require "squizlabs/php_codesniffer=*"
  1. Install the PHP_CodeSniffer Composer Installer along with the WordPress Coding Standard.
composer global require wp-coding-standards/wpcs dealerdirect/phpcodesniffer-composer-installer
  1. Check if the WordPress Coding Standard was added to PHP_CodeSniffer. ``.
phpcs -i
  1. Setup WordPress database by going to localhost:8000 on your browser. Follow the instructions carefully.

  2. You can check your codes if they follow WordPress Coding Conventions.

phpcs --standard=WordPress path/to/file
  1. Don't forget to compress the JavaScript files before you push any changes to the remote repository.
npm run build

License

This page is published under GNU General Public License