Giter Site home page Giter Site logo

dhii / scotch-on-rocks Goto Github PK

View Code? Open in Web Editor NEW
2.0 4.0 1.0 89 KB

A starter configuration for Bedrock + Scotchbox + Capistrano.

Ruby 31.69% PHP 61.07% Shell 7.24%
capistrano bedrock bedrock-capistrano wordpress cloud-init scotch-box provision digitalocean-droplets

scotch-on-rocks's Introduction

What is this and why should I use it?

There are many tools out there that make our lives as developers easier. However, it is a pain to make them work together. This project aims to provide a starter setup to allow faster creation of WordPress environments, like many other projects do. But it also aims to make those environments version controlled, easily deployable, and simple to develop locally. Indeed, in the author's opinion, these 3 things are essential to the development of any web application.

And so, the author has picked the most contemporary and proven technologies used for web development, and specifically for WordPress development, in order to fulfill the 3 essential requirements. This is why this starter pack allows one-click creation of a local development environment, one-click deployments, easy cloud VPS provisioning, and a version-controlled codebase with declarative dependency management. Everything in this starter aims to fulfill the requirements for running and developing WordPress websites. However, this configuration may be forked in the future to adapt to another platform.

The technologies and tools used here include:

  • WordPress because... that's what I work with.
  • Bedrock for version-controlled WordPress.
  • Git for version control.
  • Composer for declarative dependency management.
  • Scotchbox for local development.
  • Vagrant for configuration-based virtualization.
  • Capistrano for one-click deployment
  • cloud-init for portable, re-usable cloud VPS configuration.
  • PHP 7 for fast running and modern development.
  • MariaDB for fast and modern data storage and retrieval.

Requirements

Your host environment - the one you will be developing on - is required to have these tools installed:

Capistrano will be automatically installed inside the dev VM, so it's possible to deploy from it, provided that you have access to the SSH key that is used for deployment inside the VM.

For Windows hosts, it is recommended to use Git BASH , as it allows running Vagrant, comes with an SSH client, and is installed together with Git.

Installation Steps

1. Initialize the project

1. Clone the project

git clone --depth=1 https://github.com/Dhii/scotch-on-rocks.git my-project
cd my-project

2. Erase previous history

Just delete the .git folder, then initialize the repository:

rm -rf .git
git init

3. Commit everything

git add .
git commit

4. Create a remote repo and point to it

For example, you can create an empty repo on GitHub. Then, a command to point your local repo to the new remote could look like this:

git remote add origin https://github.com/my-user/my-project.git

2. Configure the package

You will probably want to update the following:

Maybe also:

3. Set up local environment

The dependencies should not be installed yet at this point, and if they are - chances are that they do not match the target environment. Both the local and the remote versions of PHP should match. The current local version is PHP 7.0.

  1. Run vagrant up to create the virtual environment.
  2. The composer update command was run as part of the provisioning process. Commit the changes in the composer.lock file to record the new packages.

4. Set up deployment

  1. Set the repo URL to the URL of the repo created above.
  2. Generate and set the authorized keys to the public key.
  3. Set the path to the private key.
  4. Set the target hostname.
  5. Push your changes. This is necessary for Capistrano.
  6. Configure the hosting.
    • For DigitalOcean, create a droplet with this user data. You may want to replace the values of mysqlPassword, wordpressDatabase, wordpressUser, wordpressPassword with actual credentials. However, it is not advisable to commit changes to this file for security reasons.
    • Watch out when using special shell characters: these values will be parts of shell commands, and therefore must be escaped.
    • The cloud-init service will try to install the dotenv plugin for WP CLI's native package management means, which use Composer. This can require a large amount of memory, and may fail due to runnimg OOM.
  7. Run bundle install as per bedrock-capistrano requirements.
  8. Create an env config on the target server at /srv/www/html/shared/.env.
    • You can try using the WP CLI tool to initialize the configuration, if the dotenv plugin installed successfully.
    • Alternatively, you can create the file manually, perhaps using the existing .env file as template.
    • It is not advisable to commit changes to the .env file for security reasons.
    • You may need to SSH into the target server for this. It should be possible to use the deploy user that is created as part of provisioning, with one of the keys from step 4.2.

5. Deploy

  1. Before the first deployment, run bundle exec cap production deploy:check.
  2. Then, deploy with bundle exec cap production deploy

Remote Setup

DigitalOcean

DigitalOcean allows the usage of a provisioning system called cloud-init. This repository includes configuration for that system - a cloud-config - in do-provision.yml. While the format of configuration is standard for anything running cloud-init, different systems need to be configured differently. This file contains the YAML configuration specifically for use with DigitalOcean. While the same configuration may allow provisioning of systems with other VPS providers, it is not guaranteed to work with anything other than DigitalOcean.

When using the DigitalOcean API, one may want to retrieve the contents of that file programmatically. However, when using the web UI - the online control panel - it may be necessary to copy-paste the contents into the userdata field.

Local Setup

The Vagrantfile is based on ScotchBox 3, and will set up a local environment. However, the docroot of Bedrock is different to the default docroot of Apache, which is used by ScotchBox. Therefore, the Vagrantfile has been modified to run a provisioning script. This script changes the default web-server docroot and the docroot of the example virtualhost scotchbox.local to the one used by Bedrock.

It is unadvisable to commit the .env file, because it usually contains sensitive data, such as the encryption keys and database access credentials used on the site. However, this file is included here, and contains the credentials for working with the local ScotchBox installation. DO NOT COMMIT TO ACTUAL PROJECT.

Deployment

This project uses bedrock-capistrano - a Capistrano configuration that allows structured and consistent deployment of Bedrock-powered WordPress to remote environments. To stick to the default setup, the remote environment is required to have a user with name deploy - the commands run by Capistrano in the target environment will be run under that username. The DigitalOcean cloud-config tells the environment to set up that user for SSH access. However, the authorized key will need to be added first. So, before creation of the remote environment, generate an SSH key pair (if you haven't already), and add the public key to the list of authorized keys; be sure to remove the example key. Then, point Capistrano to your private key by updating the SSH key path. While in the Capistrano environment config, also update the hostname of your server.

Capistrano does not upload local files to the target server, but instead uses Git to clone the remote repository of your project. The URL of the Git repository is normally the same for all your environments, and therefore are located in config/deploy.rb.

WordPress

The WordPress config for the target host must be in the .env file. The file in this repo contains configuration that matches the local virtual environment created by ScotchBox. To configure it for the target server, it needs to be updated to match that server's environment, and uploaded manually to the shared folder of your application, which by default would be at /srv/www/html/shared.

scotch-on-rocks's People

Contributors

xedinunknown avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

artguerilla

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.