diff options
| author | Michael Merickel <michael@merickel.org> | 2016-12-23 15:08:50 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-12-23 15:08:50 -0600 |
| commit | a7d55e25efdd14c7cbc36f23b446babce14b238e (patch) | |
| tree | ed4b7ddd23b5a506780463ba2d51377b83afc646 /docs/tutorials/wiki/src/basiclayout/README.txt | |
| parent | 933d3494b31286f45e5c460e0881b2a3cb616c42 (diff) | |
| parent | 1117bcd9a458e2f8664cabeef84209cf7b168e30 (diff) | |
| download | pyramid-a7d55e25efdd14c7cbc36f23b446babce14b238e.tar.gz pyramid-a7d55e25efdd14c7cbc36f23b446babce14b238e.tar.bz2 pyramid-a7d55e25efdd14c7cbc36f23b446babce14b238e.zip | |
Merge pull request #2881 from stevepiercy/docs-cookiecutter-changes-only
docs cookiecutter changes only
Diffstat (limited to 'docs/tutorials/wiki/src/basiclayout/README.txt')
| -rw-r--r-- | docs/tutorials/wiki/src/basiclayout/README.txt | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/docs/tutorials/wiki/src/basiclayout/README.txt b/docs/tutorials/wiki/src/basiclayout/README.txt index dcb3605b8..bd67221cc 100644 --- a/docs/tutorials/wiki/src/basiclayout/README.txt +++ b/docs/tutorials/wiki/src/basiclayout/README.txt @@ -1,12 +1,29 @@ -tutorial README -================== +myproj +=============================== Getting Started --------------- -- cd <directory containing this file> +- Change directory into your newly created project. -- $VENV/bin/pip install -e . + cd myproj -- $VENV/bin/pserve development.ini +- Create a Python virtual environment. + python3 -m venv env + +- Upgrade packaging tools. + + env/bin/pip install --upgrade pip setuptools wheel + +- Install the project in editable mode with its testing requirements. + + env/bin/pip install -e ".[testing]" + +- Run your project's tests. + + env/bin/pytest + +- Run your project. + + env/bin/pserve development.ini |
