summaryrefslogtreecommitdiff
path: root/docs/quick_tour/logging/README.txt
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-12-25 03:07:50 -0800
committerSteve Piercy <web@stevepiercy.com>2016-12-25 03:07:50 -0800
commitc87565c5ff1a3422e651f369fe4b2f848a9010ed (patch)
tree9410b245f2abea9f9aec8cc0cc8186dddccbd61a /docs/quick_tour/logging/README.txt
parent9483444d55f4dd9be8adc8c386b4af0d8af032a3 (diff)
downloadpyramid-c87565c5ff1a3422e651f369fe4b2f848a9010ed.tar.gz
pyramid-c87565c5ff1a3422e651f369fe4b2f848a9010ed.tar.bz2
pyramid-c87565c5ff1a3422e651f369fe4b2f848a9010ed.zip
quick_tour - "Logging" updates for cookiecutter
- fix line numbering - add new src files that were never included
Diffstat (limited to 'docs/quick_tour/logging/README.txt')
-rw-r--r--docs/quick_tour/logging/README.txt29
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/quick_tour/logging/README.txt b/docs/quick_tour/logging/README.txt
new file mode 100644
index 000000000..fb7bde0a7
--- /dev/null
+++ b/docs/quick_tour/logging/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