Starting Zope/Plone
===================
Before you start Plone, you should review the settings in:
 
  %(location)s/buildout.cfg
 
Adjust the ports Plone uses before starting the site, if necessary,
and run %(bin_dir)s/buildout
to apply settings.
 
To start Plone, issue the following command in a terminal window:
 
  %(sudo_cmd)s %(bin_dir)s/%(start_cmd)s
 
To stop Plone, issue the following command in a terminal window:
 
  %(sudo_cmd)s %(bin_dir)s/%(stop_cmd)s


Quick operating instructions
============================
After starting, you should be able to view the welcome page at::

    http://localhost:%(port)s/

That page offer an options to create a new Plone site and to use the
lower-level Zope Management Interface (ZMI).

Use the admin password provided at::

    %(location)s/adminPassword.txt

To change the admin password, click the "Password" link for the admin
user at::

    http://localhost:%(port)s/acl_users/users/manage_users

Password changes will not be reflected in adminPassword.txt.


Updating After Installation
===========================
Always back up your installation before customizing or updating.

Customizing the installation
----------------------------
You may control most aspects of your installation, including
changing ports and adding new packages and products by editing the
buildout.cfg file in your instance home at %(location)s.

See Martin Aspelli's excellent tutorial
"Managing projects with zc.buildout":http://plone.org/documentation/tutorial/buildout
for information on buildout options.

Apply settings by running bin/buildout in your instance directory.

Updating the installation
-------------------------
To update your installation, backup and run:

bin/buildout -n

from your instance directory. This will bring your installation up-to-date,
possibly updating Zope, Plone, eggs, and product packages in the process.
(The "-n" flag tells buildout to search for newer components.)

Check portal_migration in the ZMI after update to perform version migration
if necessary. You may also need to visit the product installer to update
product versions.

