Skip to content

Commit 7c141c8

Browse files
author
gau1991
committed
Merge branch 'python' of github.com:rtCamp/easyengine into python
2 parents 46c473b + a562562 commit 7c141c8

File tree

1 file changed

+83
-22
lines changed

1 file changed

+83
-22
lines changed

README.md

Lines changed: 83 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,96 @@
1+
IMPORTANT
2+
============================================
13

2-
How To setup this version on your system??
4+
#### We are looking for [Python Developers] (https://rtcamp.com/careers/python-developer/) to join our team. We offer work from home, so you can join EasyEngine team anywhere! _[Why Python?] (https://rtcamp.com/blog/easyengine-3-roadmap/#whypython)_
5+
6+
---
7+
8+
[![Stories in Ready](https://badge.waffle.io/rtcamp/easyengine.png?label=ready&title=Ready)](https://waffle.io/rtcamp/easyengine)
9+
[![Stories in Progress](https://badge.waffle.io/rtcamp/easyengine.png?label=in%20progress&title=In%20Progress)](https://waffle.io/rtcamp/easyengine)
10+
11+
<img src="https://d3qt5vpr7p9rgn.cloudfront.net/wp-content/uploads/2013/08/easy-engine-logo-2-RS1.png" alt="EasyEngine Logo" align="right" />
12+
13+
[![Travis Build Status](https://travis-ci.org/rtCamp/easyengine.svg "Travis Build Status")] (https://travis-ci.org/rtCamp/easyengine)
14+
15+
EasyEngine (ee) is a linux shell-script collection, which makes it easy to manage your wordpress sites running on nginx web-server.
16+
17+
**EasyEngine currently supports:**
18+
19+
- Ubuntu 12.04 & 14.04
20+
- Debian 7
21+
22+
## Quick Start
23+
24+
```bash
25+
wget -qO ee rt.cx/ee && sudo bash ee # install easyengine
26+
sudo ee site create example.com --wp # Install required packages & setup WordPress on example.com
27+
```
28+
29+
## Update EasyEngine
30+
31+
32+
Update Procedure For EasyEngine
33+
34+
```bash
35+
wget -qO eeup http://rt.cx/eeup && sudo bash eeup
36+
```
37+
38+
## More Site Creation Commands
39+
40+
### Standard WordPress Sites
341

442
```bash
5-
sudo apt-get install python3-pip git
6-
sudo pip3 install virtualenv
7-
git clone -b python https://github.com/rtCamp/easyengine.git
8-
cd easyengine
9-
virtualenv ./env --system-site-packages
10-
source ./env/bin/activate
11-
sudo pip3 install -r requirements.txt
12-
sudo python3 setup.py develop
13-
ee --help
43+
ee site create example.com --wp # install wordpress without any page caching
44+
ee site create example.com --w3tc # install wordpress with w3-total-cache plugin
45+
ee site create example.com --wpsc # install wordpress with wp-super-cache plugin
46+
ee site create example.com --wpfc # install wordpress + nginx fastcgi_cache
1447
```
1548

16-
How to install this version on your system??
49+
### WordPress Multsite with subdirectory
50+
1751
```bash
18-
sudo apt-get update
19-
sudo apt-get -y install python3 python3-apt python3-setuptools python3-dev git
20-
git clone -b python https://github.com/rtCamp/easyengine.git
21-
cd easyengine
22-
sudo python3 setup.py install
23-
ee --help
52+
ee site create example.com --wpsubdir # install wpmu-subdirectory without any page caching
53+
ee site create example.com --wpsubdir --w3tc # install wpmu-subdirectory with w3-total-cache plugin
54+
ee site create example.com --wpsubdir --wpsc # install wpmu-subdirectory with wp-super-cache plugin
55+
ee site create example.com --wpsubdir --wpfc # install wpmu-subdirectory + nginx fastcgi_cache
2456
```
2557

58+
### WordPress Multsite with subdomain
59+
60+
```bash
61+
ee site create example.com --wpsubdomin # install wpmu-subdomain without any page caching
62+
ee site create example.com --wpsubdomain --w3tc # install wpmu-subdomain with w3-total-cache plugin
63+
ee site create example.com --wpsubdomain --wpsc # install wpmu-subdomain with wp-super-cache plugin
64+
ee site create example.com --wpsubdomain --wpfc # install wpmu-subdomain + nginx fastcgi_cache
65+
```
66+
67+
### Non-WordPress Sites
68+
```bash
69+
ee site create example.com --html # create example.com for static/html sites
70+
ee site create example.com --php # create example.com with php support
71+
ee site create example.com --mysql # create example.com with php & mysql support
72+
```
73+
74+
## Cheatsheet - Site creation
75+
76+
77+
| | Single Site | Multisite w/ Subdir | Multisite w/ Subdom |
78+
|--------------------|---------------|-----------------------|-----------------------|
79+
| **NO Cache** | --wp | --wpsubdir | --wpsubdomain |
80+
| **WP Super Cache** | --wpsc | --wpsubdir --wpsc | --wpsubdomain --wpsc |
81+
| **W3 Total Cache** | --w3tc | --wpsubdir --w3tc | --wpsubdomain --w3tc |
82+
| **Nginx cache** | --wpfc | --wpsubdir --wpfc | --wpsubdomain --wpfc |
83+
2684

27-
EasyEngine 3.x Developement version
85+
## Useful Links
86+
- [Documentation] (http://rtcamp.com/easyengine/docs/)
87+
- [FAQ] (http://rtcamp.com/easyengine/faq/)
88+
- [Conventions used] (http://rtcamp.com/wordpress-nginx/tutorials/conventions/)
2889

90+
## Donations
2991

30-
Thinking To Contribute???
92+
[![Donate](https://cloud.githubusercontent.com/assets/4115/5297691/c7b50292-7bd7-11e4-987b-2dc21069e756.png)] (https://rtcamp.com/donate/?project=easyengine)
3193

32-
refer docs to know more on EasyEngine Developement
94+
## License
3395

34-
follow instruction from step 3 in Creating cement app
35-
http://builtoncement.com/2.4/dev/boss_templates.html
96+
Same [GPL] (http://www.gnu.org/licenses/gpl-2.0.txt) that WordPress uses!

0 commit comments

Comments
 (0)