glauberm / studio-903

WordPress website for Studio 903

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Studio 903

Running the project locally

  1. Install wp-cli.

  2. Download WordPress core at the root of the project:

wp core download
  1. Create a new wp-config.php file:
wp config create \
    --dbname=<YOUR_DB_NAME> \
    --dbuser=<YOUR_DB_USER> \
    --dbpass=<YOUR_DB_PASS>
  1. Enable WP_DEBUG:
wp config set WP_DEBUG true --raw --type=constant
  1. Install WordPress core:
wp core install \
    --title='Studio 903' \
    --url=localhost:8080 \
    --admin_user=<YOUR_ADMIN_USER> \
    --admin_password=<YOUR_ADMIN_PASSWORD> \
    --admin_email=<YOUR_ADMIN_EMAIL>
  1. Install plugins (advanced-custom-fields and polylang are required):
wp plugin install \
    classic-editor \
    advanced-custom-fields \
    polylang \
    regenerate-thumbnails \
    post-types-order \
    user-role-editor \
    google-sitemap-generator \
    wordpress-importer \
    --activate
  1. Activate the Studio 903 plugin:
wp plugin activate studio-903
  1. Activate the Studio 903 theme:
wp theme activate studio-903
  1. Run the development server:
wp server
  1. Visit http://localhost:8080 on your browser.

About

WordPress website for Studio 903


Languages

Language:PHP 59.0%Language:SCSS 23.8%Language:Hack 9.9%Language:JavaScript 7.4%Language:CSS 0.0%