schlessera / asv3
Personal homepage of Alain Schlesser - version 3
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 5
Forks: 0
Open Issues: 5
Type:project
Requires
- schlessera/as-speaking: dev-master
- schlessera/asv3-theme: dev-master
- wecodemore/wpstarter: ~2.0
- wpackagist-plugin/amp: ^1.5.5
Requires (Dev)
- codeception/codeception: ^3.1
- composer/installers: ^1.7
- wp-cli/config-command: ^2.0
- wp-cli/core-command: ^2.0
- wp-cli/extension-command: ^2.0
- wp-cli/server-command: ^2.0
This package is auto-updated.
Last update: 2024-10-21 23:11:30 UTC
README
This is a WordPress development environment based on Lando. It allows for core development, plugin development, and theme development. It is intended to largely be a Docker-based port of VVV.
Disclaimer: There is no official support for this environment. Our team at Google is using it, and we are happy to share it and collaborate on it with the WordPress community. The environment is still in a very early development stage, so use it at your own risk.
Features
- Standalone Development Environment based on Lando, which itself requires Docker
- WordPress Core Development Repository via Git and Subversion, allowing to seamlessly use both within a single directory
- WordPress Plugin & Theme Development Environment, decoupled from Core Development Repository
- PHPUnit & PHPCodeSniffer
- NPM & Grunt
Setup
- Install the latest version of Lando via a GitHub DMG file. You also need to have Docker installed, but Lando will take care of that for you if you don't.
- Clone this repository into a directory of your choice. Navigate to that directory.
- Run
lando start
. When doing this for the first time, it will set the environment up for you, so it will take a bit longer than on subsequent starts. - Access your site under
https://wordpressdev.lndo.site/
. If you're having trouble connecting, you may be facing the DNS Rebinding Protection issue. To fix this, and to ensure you can develop while offline, follow the Working Offline steps. In other words, add the following to your host machine's/etc/hosts
file:
127.0.0.1 wordpressdev.lndo.site
If this is your very first Lando project, make sure that your system trusts the SSL certificate that Lando generates via: sudo security add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain ~/.lando/certs/lndo.site.pem
You might need to restart your browser to see the change being reflected.
An additional note on Lando: The project is currently approaching its version 3.0 release, with frequent RC releases. As this environment is based on that latest version, make sure to check back for new Lando versions regularly.
Usage
- WordPress core contributions are done in the
public/core-dev
directory which is both a Git clone and SVN checkout. To update the Git and SVN in tandem, dogit svn-up
in that directory to update to the latesttrunk
/master
. To switch/update another branch, dogit svn-up $branch
. Thisgit svn-up
command is an alias to the repo'sbin/svn-git-up
script. - WordPress plugin and theme development should happen in
public/content
, which is a customwp-content
directory, decoupled from the WordPress core repository. The environment automatically takes care of setting WordPress constants appropriately so that the core and content directories are connected, so you don't need to worry about this. - You can use
lando stop
to turn off the environment andlando start
to restart it again later. You can learn more about available commands in the Lando documentation. - You can customize the environment. Variables placed in a custom
.env
file in the root directory will override similar variables from the.env.base
file. Custom CLI configuration can be set up via awp-cli.local.yml
file (taking precedence overwp-cli.yml
), and even custom Lando configuration is possible via a.lando.yml
file (taking precedence over.lando.base.yml
). For changes to the Lando configuration or environment variables, you will need to runlando rebuild
to apply them.
Contributing
Any kind of contributions to WordPressDev are welcome. Please read the contributing guidelines to get started.