Skip to content

Woody core is the main project to start your new website. Enjoy ;)

License

Notifications You must be signed in to change notification settings

benbchd/woody-core

 
 

Repository files navigation

Woody

PullRequest Welcome Required WP Version Twitter Follow


🔥 Installation & Usage

Dependencies

Woody is dependent on 2 paid plugins of the wordpress community. To use woody you must absolutely buy and install :

  • Polylang PRO version 2.6.4
  • ACF PRO (Advanced Custom Fields PRO) version 5.7.10

These plugins must be uploaded to the web/app/plugins directory.

WARNING: If you are using the Woody PRO version, it's possible to install these dependencies by "composer", but this does not mean you do not have to buy these 2 plugins.

Configuration

Create a configuration file for each of your sites in "config/sites".
My first project is called "mywebsite", so I create the file "config/sites/mywebsite.yml".
Some of these settings must be requested from the Raccourci agency, please contact support@woody-wordpress.com
Here are the available settings

DB_NAME='wp_mywebsite'
DB_USER='wp_mywebsite'
DB_PASSWORD='mypassword'
DB_HOST='localhost:3306'
MEMCACHED_HOST='localhost'
MEMCACHED_PORT='11211'

WP_ENV='dev'
WP_MEMORY_LIMIT='256M'
WP_MAX_MEMORY_LIMIT='256M'
WP_POST_REVISIONS='3'
WP_HOME='https://www.mywebsite.com'
WP_GIT_REPOSITORY='git@github.com:organization/mywebsite.git'
FORCE_SSL_ADMIN='false'
EMPTY_TRASH_DAYS='30'

AUTH_KEY=''
SECURE_AUTH_KEY=''
LOGGED_IN_KEY=''
NONCE_KEY=''
AUTH_SALT=''
SECURE_AUTH_SALT=''
LOGGED_IN_SALT=''
NONCE_SALT=''

WOODY_ADMIN_EMAIL=''
WOODY_ADMIN_NAME=''
WOODY_TIMEZONE='Europe/Paris'
WOODY_LATITUDE='46.1482363'
WOODY_LONGITUDE='-1.1750544'
WOODY_IMAGE_WEBP_ENABLE='false'
WOODY_SSO_CLIENT_ID='Provided by Raccourci Agency'
WOODY_SSO_CLIENT_SECRET='Provided by Raccourci Agency'
WOODY_SSO_SECRET_URL='https://connect.studio.raccourci.fr'
WOODY_SSO_ADD_URL_TOKEN='Provided by Raccourci Agency'
WOODY_VARNISH_CACHING_ENABLE='false'
WOODY_VARNISH_CACHING_DEBUG='true'
WOODY_VARNISH_CACHING_TTL='2592000'
WOODY_VARNISH_CACHING_FOCUSRANDOM_TTL='86400'
WOODY_VARNISH_CACHING_FOCUSSHEET_TTL='7200'
WOODY_VARNISH_CACHING_WEATHERPAGE_TTL='14400'
WOODY_VARNISH_CACHING_IPS='127.0.0.1:80'
WOODY_VARNISH_CACHING_PURGE_KEY=''
WOODY_VARNISH_CACHING_COOKIE=''
WOODY_ACF_PRO_KEY='You must purchase an ACF license'

WOODY_GTM=''
WOODY_ACCESS_LOCKED='false'
WOODY_ACCESS_STAGING='false'
WOODY_OPTIONS='Provided by Raccourci Agency'
WOODY_API_LOGIN='Provided by Raccourci Agency'
WOODY_API_PASSWORD='Provided by Raccourci Agency'
WOODY_TOURISTIC_MAPS_API_KEY='Provided by Raccourci Agency'
WOODY_TOURISTIC_MAPS_API_KEY_PROD='Provided by Raccourci Agency'
WOODY_IGN_MAPS_API_KEY='Provided by Raccourci Agency'
WOODY_IGN_MAPS_API_KEY_PROD='Provided by Raccourci Agency'
WOODY_GOOGLE_MAPS_API_KEY='Provided by Raccourci Agency'
WOODY_GOOGLE_MAPS_API_KEY_PROD='Provided by Raccourci Agency'

WOODY_SMTP_SENDER_NAME='Provided by Raccourci Agency'
WOODY_SMTP_SENDER='Provided by Raccourci Agency'
WOODY_SMTP_USERNAME='Provided by Raccourci Agency'
WOODY_SMTP_PASSWORD='Provided by Raccourci Agency'

First, install Woody Core via the Composer package manager:

composer install

Run this command to install your site:

woody deploy:core
woody deploy:site -s mywebsite

To reinstall your site from scratch

WARNING: it's necessary to empty its database before launching this command

woody deploy:core
woody deploy:site -s mywebsite -o force

To execute the command but without the gulp compilation:

woody deploy:site -s mywebsite -o no-gulp

The commands can be combined by doing:

woody deploy:site -s mywebsite -o force,no-gulp

Here is the list of available ordering options:

  • force
  • speed
  • no-gulp
  • no-cache
  • no-twig
  • no-varnish
  • no-install
  • no-updb
  • no-acf
  • no-warm
  • no-sso

These two commands produce the same result. "speed" is a shortcut to all these options

woody deploy:site -s mywebsite -o speed
woody deploy:site -s mywebsite -o no-install,no-updb,no-acf,no-gulp,no-warm,no-varnish,no-sso

📥 Updating

If you want to make changes in dependencies, you must install this command beforehand

composer update --prefer-source

Otherwise use this command regularly to update yourself

composer update

🏄 Sass & Gulp

Run the following command to launch the "watch" of your files.

cd /gulp
yarn watch --site mywebsite

The following command is used to trigger the build of assets for the production.

cd /gulp
yarn build --site mywebsite

🚧 Debug PHP

In the Chrome console (PHP Console)

Install the PHP Console extension for Chrome https://chrome.google.com/webstore/detail/php-console/nfhmhhlpfleoednkpnnnkolmclajemef

WARNING: you must enter the password which is "root".

Then simply call the function :

wd($value);

You can add 2 optional parameters:

wd($val, $tag = '');

Exemple :

$array = ['color' => 'red'];
wd($array, 'color');

In the current page

There is also the "rcd" function, which allows you to make your own "print_r".

You can add 2 optional parameters:

rcd($val, $exit = false, $pre = true);

Exemple :

$array = ['color' => 'red'];
rcd($array, true);

💊 use WP-CLI

Activate a plugin

WP_SITE_KEY=mywebsite wp plugin activate hello

Import all the SIT (Tourist information system) records of the destination from API (10000 max for the moment)

WP_SITE_KEY=mywebsite wp woody:hawwwai warm_cache
WP_SITE_KEY=mywebsite wp woody:process async_start

Delete all SIT records from the destination

WP_SITE_KEY=mywebsite wp woody:hawwwai delete_cache

Regenerate the canonicals all SIT records

WP_SITE_KEY=mywebsite wp woody:hawwwai update_canonicals
WP_SITE_KEY=mywebsite wp woody:hawwwai rsdu

♻️ Recommended VSCode extensions

  • Git Graph
  • BABA-Git Flow
  • EditorConfig for VS Code
  • Beautify
  • Intelephense
  • php cs fixer
  • Sass
  • TODO Highlight
  • Todo Tree
  • Trailing SPaces
  • Twig
  • TWIG pack
  • Bracket Pair Colorizer
  • Composer
  • ACF Snippet
  • Change String Case
  • Dash
  • Project Manager
  • Wordpress Snippets

Install php-cs-fixer and configure the VSCode extension to launch in "OnSave" mode

wget https://cs.symfony.com/download/php-cs-fixer-v2.phar -O php-cs-fixer
sudo chmod a+x php-cs-fixer
sudo mv php-cs-fixer /usr/local/bin/php-cs-fixer

🤘 Contributors

Thank you to all the people who have already contributed to Woody Core !

For future contributors, please read our Contributor Covenant Code of Conduct

Header photo by John Lee on Unsplash
Header photo by John Lee on Unsplash

🔖 License

Woody Core is open-sourced software licensed under the GPL2.

👑 Sponsoring

Woody is a digital ecosystem co-financed by the Regional Tourism Committee of Brittany for eBreizh Connexion

eBreizh Connexion

About

Woody core is the main project to start your new website. Enjoy ;)

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 59.9%
  • JavaScript 40.1%