diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-12-25 02:17:19 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-12-25 02:17:19 -0800 |
| commit | 54d9ddcd335d45662ca2ec2839574085318e8704 (patch) | |
| tree | c037abd5eb3d2f4c849b975c641e8575c01bd650 /docs/quick_tour/package/README.txt | |
| parent | 2cd1eab15a3777cbc81c2d365f21a98c29c9ed86 (diff) | |
| download | pyramid-54d9ddcd335d45662ca2ec2839574085318e8704.tar.gz pyramid-54d9ddcd335d45662ca2ec2839574085318e8704.tar.bz2 pyramid-54d9ddcd335d45662ca2ec2839574085318e8704.zip | |
quick_tour - Configuration with ``.ini`` files section cookiecutter updates
- src files
- update numbered list for new listen configuration for waitress
- fix reference to app, not server
- reorder numbered list to align with configuration order
Diffstat (limited to 'docs/quick_tour/package/README.txt')
| -rw-r--r-- | docs/quick_tour/package/README.txt | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/docs/quick_tour/package/README.txt b/docs/quick_tour/package/README.txt index 63aaf6fbd..fb7bde0a7 100644 --- a/docs/quick_tour/package/README.txt +++ b/docs/quick_tour/package/README.txt @@ -1,4 +1,29 @@ -hello_world README +hello_world +=============================== +Getting Started +--------------- +- Change directory into your newly created project. + cd hello_world + +- Create a Python virtual environment. + + python3 -m venv env + +- Upgrade packaging tools. + + env/bin/pip install --upgrade pip setuptools + +- 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 |
