summaryrefslogtreecommitdiff
path: root/docs/tutorials/lxmlgraph/step01.rst
blob: 578f13608230d036c6693e9dcb593f39e7e61611 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
=======================
Step 1: Getting Started
=======================

To get started, using the ``paster`` command from a :term:`virtualenv`
you've created that has :mod:`repoze.bfg` installed, run ``paster
create -t bfg`` as described in :ref:`project_narr` to create your
``lxmlgraph`` project::

 $ paster create -t bfg Selected and implied templates: repoze.bfg#bfg
  repoze.bfg starter project

  Enter project name: lxmlgraph
  ...
 $
  
You now have a project named ``lxmlgraph`` in your current directory.
We'll add to this project in subsequent steps.

To get your project ready for development and execution, use the
``setup.py develop`` command within the same virtualenv as bfg is
installed as documented in :ref:`project_narr` .  You'll need to do
this in order to run the ``lxmlgraph`` application in subsequent
steps.