Created
January 29, 2017 18:40
-
-
Save torounit/f338d04549be7769b22fcbccf9e9c253 to your computer and use it in GitHub Desktop.
VCCW setting for HelpHub.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
# vim: ft=ruby expandtab shiftwidth=2 tabstop=2 | |
# | |
# Network Settings | |
# | |
hostname: helphub.dev | |
ip: 192.168.77.10 | |
# | |
# WordPress Settings | |
# | |
version: latest | |
lang: en_US | |
title: Welcome to the HelpHub | |
# WordPress Default Plugins | |
# Plugin's slug or url to the plugin's slug. | |
# | |
plugins: | |
- debug-bar | |
# | |
# WordPress Default Theme | |
# Theme's slug or url to the theme's .zip. | |
# | |
theme: 'helphub' | |
# | |
# WordPress Options | |
# | |
options: | |
blogdescription: Hello HelpHub. | |
# | |
# Addtional PHP code in the wp-config.php | |
# | |
extra_wp_config: | | |
define( 'WPORGPATH', 'https://wordpress.org/' ); | |
# | |
# Theme unit testing | |
# | |
theme_unit_test: false | |
theme_unit_test_uri: https://wpcom-themes.svn.automattic.com/demo/theme-unit-test-data.xml | |
# theme_unit_test_uri: https://raw.githubusercontent.com/jawordpressorg/theme-test-data-ja/master/wordpress-theme-test-date-ja.xml | |
# | |
# RubyGems | |
# | |
ruby_gems: [] | |
# | |
# NPM modules | |
# | |
npms: [] | |
# | |
# composer | |
# | |
composers: [] | |
php_ini: | |
date.timezone: UTC | |
default_charset: UTF-8 | |
mbstring.language: neutral | |
mbstring.internal_encoding: UTF-8 | |
allow_url_include: 1 | |
post_max_size: 1024M # Same with VVV | |
short_open_tag: Off | |
session.save_path: /tmp | |
sendmail_path: /usr/bin/env catchmail | |
upload_max_filesize: 1024M # Same with VVV | |
xdebug.remote_enable: true | |
xdebug.remote_host: 127.0.0.1 | |
xdebug.remote_port: 9000 | |
xdebug.profiler_enable: true | |
xdebug.idekey: VCCWDEBUG | |
xdebug.remote_connect_back: true | |
xdebug.remote_autostart: true | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment