Skip to content

Commit 29d8c5e

Browse files
committed
adding latest version wp581
1 parent 1aa5430 commit 29d8c5e

File tree

6,995 files changed

+2516088
-484
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

6,995 files changed

+2516088
-484
lines changed

README.md

+30-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,32 @@
1-
# Composer-enabled Wordpress Upstream template
2-
## Experimental
1+
# WordPress
32

4-
This is Pantheon's recommended starting point for forking new upstreams that work with the Platform's integrated
5-
Composer build process. Replace this with a description of your site. See `upstream-config/README.md` for advice
6-
on customizing this upstream and instructions on how to use it to create individual sites.
3+
This is a WordPress repository configured to run on the [Pantheon platform](https://pantheon.io).
4+
5+
Pantheon is website platform optimized and configured to run high performance sites with an amazing developer workflow. There is built-in support for features such as Varnish, Redis, Apache Solr, New Relic, Nginx, PHP-FPM, MySQL, PhantomJS and more. 
6+
7+
## Getting Started
8+
9+
### 1. Spin-up a site
10+
11+
If you do not yet have a Pantheon account, you can create one for free. Once you've verified your email address, you will be able to add sites from your dashboard. Choose "WordPress" to use this distribution.
12+
13+
### 2. Load up the site
14+
15+
When the spin-up process is complete, you will be redirected to the site's dashboard. Click on the link under the site's name to access the Dev environment.
16+
17+
![alt](http://i.imgur.com/2wjCj9j.png?1, '')
18+
19+
### 3. Run the WordPress installer
20+
21+
How about the WordPress database config screen? No need to worry about database connection information as that is taken care of in the background. The only step that you need to complete is the site information and the installation process will be complete.
22+
23+
We will post more information about how this works but we recommend developers take a look at `wp-config.php` to get an understanding.
24+
25+
![alt](http://i.imgur.com/4EOcqYN.png, '')
26+
27+
If you would like to keep a separate set of configuration for local development, you can use a file called `wp-config-local.php`, which is already in our .gitignore file.
28+
29+
### 4. Enjoy!
30+
31+
![alt](http://i.imgur.com/fzIeQBP.png, '')
732

8-
Because it is under active development, you should not create permanent/production sites using this repository
9-
yet. We make no guarantees of backwards compatibility. Merging new updates from this repository may break existing
10-
sites.

composer.json

-72
This file was deleted.

index.php

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<?php
2+
/**
3+
* Front to the WordPress application. This file doesn't do anything, but loads
4+
* wp-blog-header.php which does and tells WordPress to load the theme.
5+
*
6+
* @package WordPress
7+
*/
8+
9+
/**
10+
* Tells WordPress to load the WordPress theme and output it.
11+
*
12+
* @var bool
13+
*/
14+
define( 'WP_USE_THEMES', true );
15+
16+
/** Loads the WordPress Environment and Template */
17+
require __DIR__ . '/wp-blog-header.php';

0 commit comments

Comments
 (0)