update: July 31, 2015 My recommended approach is to install Plone on Cloud9 IDE.
update: July 24, 2013 This no longer works as Dotcloud has retired their free sandboxes. I've documented a way to run Plone in the Cloud with Nitrous.io.
Before you start
You will need:
- 5 to 10 minutes of spare time.
- a reliable internet connection
- a Cloud9 IDE account
- a Dotcloud account
Have your login information for both Cloud9 IDE and Dotcloud close at hand.
Disclaimer:
The underlying tools for managing Plone on Dotcloud from Cloud9 IDE are in an alpha stage at best (meaning, I've been working on this for only a few weeks)Setup and Installation
Step 1 - Clone the URL at Cloud9 IDE
Log in to Cloud9 IDE and from the dashboard select "Create new workspace" > "Clone from URL".
In the resulting dialog box, set the "source URL" to https://github.com/pigeonflight/stack-python-plone and click "Create":
Step 2 - Preparation
Launch your newly created Cloud9 IDE instance from the dashboard and install the dependencies by issuing the following commands from a dotcloud terminal (you can launch the terminal with the shortcut key Alt+T)easy_install pipAlso setup dotcloud (you'll be prompted for you dotcloud username and password)
pip install -r requirements.txt
dotcloud setup
Step 3 - Create a dotcloud instance
From a terminal create a new dotcloud instance and push. (Answer yes when asked about using the current directory for using
dotcloud create plonedemoThis will generate a live Plone instance on dotcloud.
dotcloud push
Accessing your Plone Site
Your Plone site is named based on your dotcloud account name and your dotcloud instance name. If you used the name 'plonedemo' and your dotcloud account name is 'scotty', then your Plone url will be: http://plonedemo-scotty.dotcloud.com.Your credentials (admin password)
The following command will retrieve your admin password:dotcloud run www cat code/adminPassword.txtMake a note of your admin password.
Visit the appropriate url using your webbrowser and log in using the credentials from the output of the above command.
Have fun.
2 comments:
If you're familiar with Amazon cloud offering, an alternative way to get Plone running in minutes is this:
https://aws.amazon.com/marketplace/pp/B009SVBKOM/ref=srh_res_product_title?ie=UTF8&sr=0-3&qid=1364672257185
Start a micro instance in your region of choice and off you go...
It isn't entirely production ready out of the box, but works very well for learning Plone - and with a little configuration it could be production ready.
Hmm.. this is not bad, though it does add a barrier to students in my region who are likely to not have a credit card.
Post a Comment