diff options
| author | Steve Piercy <web@stevepiercy.com> | 2016-12-25 03:24:10 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2016-12-25 03:24:10 -0800 |
| commit | 64009ac01e4a8a8526289d600cb3c60ca50257ef (patch) | |
| tree | afeec87498997365d78eb9425cf288275d3068e3 /docs/quick_tour/sessions/README.txt | |
| parent | c87565c5ff1a3422e651f369fe4b2f848a9010ed (diff) | |
| download | pyramid-64009ac01e4a8a8526289d600cb3c60ca50257ef.tar.gz pyramid-64009ac01e4a8a8526289d600cb3c60ca50257ef.tar.bz2 pyramid-64009ac01e4a8a8526289d600cb3c60ca50257ef.zip | |
quick_tour - "Sessions" updates for cookiecutter
- add src files
- adjust line numbers
Diffstat (limited to 'docs/quick_tour/sessions/README.txt')
| -rw-r--r-- | docs/quick_tour/sessions/README.txt | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/quick_tour/sessions/README.txt b/docs/quick_tour/sessions/README.txt new file mode 100644 index 000000000..fb7bde0a7 --- /dev/null +++ b/docs/quick_tour/sessions/README.txt @@ -0,0 +1,29 @@ +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 |
