diff options
| author | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2013-09-16 02:14:53 +0200 |
|---|---|---|
| committer | Tshepang Lekhonkhobe <tshepang@gmail.com> | 2013-09-16 02:14:53 +0200 |
| commit | b0b28ede912c817a62a84b97c332e39eda02d166 (patch) | |
| tree | 7b40be0ffebbe755904781b718c3ed0e19a85103 /docs/quick_tutorial/scaffolds.rst | |
| parent | 6625ddd9d78b1307aaff6b9c212c2fbbe926c9c0 (diff) | |
| download | pyramid-b0b28ede912c817a62a84b97c332e39eda02d166.tar.gz pyramid-b0b28ede912c817a62a84b97c332e39eda02d166.tar.bz2 pyramid-b0b28ede912c817a62a84b97c332e39eda02d166.zip | |
s/env/venv just for sake of consistency
Diffstat (limited to 'docs/quick_tutorial/scaffolds.rst')
| -rw-r--r-- | docs/quick_tutorial/scaffolds.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/quick_tutorial/scaffolds.rst b/docs/quick_tutorial/scaffolds.rst index b13bdec0b..05347dd6b 100644 --- a/docs/quick_tutorial/scaffolds.rst +++ b/docs/quick_tutorial/scaffolds.rst @@ -33,7 +33,7 @@ Steps .. code-block:: bash - (env)$ pcreate --list + (venv)$ pcreate --list Available scaffolds: alchemy: Pyramid SQLAlchemy project using url dispatch starter: Pyramid starter project @@ -43,21 +43,21 @@ Steps .. code-block:: bash - (env)$ pcreate --scaffold starter scaffolds + (venv)$ pcreate --scaffold starter scaffolds #. Use normal Python development to setup our project for development: .. code-block:: bash - (env)$ cd scaffolds - (env)$ python setup.py develop + (venv)$ cd scaffolds + (venv)$ python setup.py develop #. Startup the application by pointing Pyramid's ``pserve`` command at the project's (generated) configuration file: .. code-block:: bash - (env)$ pserve development.ini --reload + (venv)$ pserve development.ini --reload On startup, ``pserve`` logs some output: |
