Skip to content

Instantly share code, notes, and snippets.

@generalredneck
Created September 5, 2017 20:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save generalredneck/d628591d49ab2bef44c09af4982b8e7d to your computer and use it in GitHub Desktop.
Save generalredneck/d628591d49ab2bef44c09af4982b8e7d to your computer and use it in GitHub Desktop.
Readme for my test project
- text: '# Manual Pantheon Project'
- text: "This is a brief overview of my manual Pantheon Project located at https://github.com/fourkitchens/readmes/tree/master/pantheon/d7/manual"
- include: './node_modules/readmes/pantheon/d7/manual/at-a-glance.md'
- include: './node_modules/readmes/pantheon/d7/manual/brief-foundation-architecture.md'
- include: './node_modules/readmes/pantheon/d7/manual/before-you-start.md'
- include: './node_modules/readmes/pantheon/d7/manual/getting-started.md'
- include: './node_modules/readmes/pantheon/d7/manual/subsequent-builds.md'
- include: './node_modules/readmes/pantheon/d7/manual/git-workflow.md'
- include: './node_modules/readmes/pantheon/d7/manual/configuration-management-workflow.md'
- include: './node_modules/readmes/pantheon/d7/manual/deployment.md'
- include: './node_modules/readmes/pantheon/d7/manual/testing.md'
- include: './node_modules/readmes/pantheon/d7/manual/known-issues.md'

Manual Pantheon Project

This is a brief overview of my manual Pantheon Project located at https://github.com/fourkitchens/readmes/tree/master/pantheon/d7/manual

At A Glance

Build Tool None
Local Environment Kalabox
Deployment Method Manual push to Pantheon
PHP 7.0
Core Distribution Drupal 7
Testing Enforced None

Brief Foundation Architecture

  • Drupal 7 vanilla
  • Features

Before You Start

Dependencies

Accounts, Roles, and Permissions

  • Pantheon access to this site's Dashboard

Database

  • Retrive from Pantheon Live backup

Getting Started

Initial Setup

Nothing to do here.

Local Development

  1. Use Kalabox to download and create a local environment.
  2. cd ~/Kalabox/SITE_NAME/code
  3. Add the github repository as a remote using git remote add fourkitchens GIT_REPO
  4. npm install
  5. Use Kalabox to pull live database.
  6. kbox drush cc all

Subsequent Builds

Checkout the new code and rerun steps 4-6 for local development as needed.

Git workflow

  • master The master branch is for code ready to be released to the live environment. Pantheon enforces us to traverse from dev to live so essentially, dev environment is UAT and Live is live and test is effectively a dead zone since it is not individually addressable. We want to preserve the ability to "hot patch" live so we are not using dev as a gitflow "develop" as a result of the pantheon workflow.

  • feature Feature branches should branch from and merge back into the sprint branch. They contain code that is currently in development. When a story/feature is complete, a pull request should be created merging the feature branch into the sprint branch.

Configuration Management Workflow

Use features as necessary to push configuration to the website.

Deployment

  1. Merge develop into master.
  2. Push master to Pantheon.
  3. terminus dashboard PANTHEON_SITE.test
  4. Enter the tickets you are deploying into the deployment notes and click Deploy
  5. Click the "Live" tab.
  6. Repeat step 4.
  7. run the following commands as needed:
terminus drush PANTHEON_SITE.live -- updb -y
terminus drush PANTHEON_SITE.live -- cc all -y
terminus drush PANTHEON_SITE.live -- fra -y
terminus drush PANTHEON_SITE.live -- cc all -y

Testing

All testing is currently done manually and via the code review process.

Known Issues

There are currently no known issues for this site.

{
"name": "emdaer-test",
"description": "",
"scripts": {
"emdaer": "emdaer"
},
"devDependencies": {
"emdaer": "^0.3.3",
"readmes": "git+ssh://git@github.com:fourkitchens/readmes.git"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment