summaryrefslogtreecommitdiff
path: root/docs/quick_tour/logging/README.txt
diff options
context:
space:
mode:
authorMichael Merickel <michael@merickel.org>2016-12-25 20:05:12 -0600
committerGitHub <noreply@github.com>2016-12-25 20:05:12 -0600
commit8be808150a6df96b5815aa3885c0f62540d82e27 (patch)
tree33821f59b97d4fecce31d6b291ef8368a111c5cf /docs/quick_tour/logging/README.txt
parent6c3f4f8d0598cb62e37aa278e9c2c3e4194f8831 (diff)
parenta0ad6ffc14ef8dfde70e487fb057433ff942b001 (diff)
downloadpyramid-8be808150a6df96b5815aa3885c0f62540d82e27.tar.gz
pyramid-8be808150a6df96b5815aa3885c0f62540d82e27.tar.bz2
pyramid-8be808150a6df96b5815aa3885c0f62540d82e27.zip
Merge pull request #2888 from stevepiercy/docs-cookiecutter-changes-only
docs cookiecutter changes only - Quick Tour
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