summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/src/views/README.txt
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-12-23 04:27:48 -0800
committerSteve Piercy <web@stevepiercy.com>2016-12-23 04:27:48 -0800
commite03ea9265b809f783094799e67ae9e00e09085b1 (patch)
tree1e799858ac8afcde784fd671eb5f806f1b466ec6 /docs/tutorials/wiki/src/views/README.txt
parent9d95c55f951e31fd42c10d40136cd72fc95f2159 (diff)
downloadpyramid-e03ea9265b809f783094799e67ae9e00e09085b1.tar.gz
pyramid-e03ea9265b809f783094799e67ae9e00e09085b1.tar.bz2
pyramid-e03ea9265b809f783094799e67ae9e00e09085b1.zip
wiki/src/views updates
Diffstat (limited to 'docs/tutorials/wiki/src/views/README.txt')
-rw-r--r--docs/tutorials/wiki/src/views/README.txt27
1 files changed, 22 insertions, 5 deletions
diff --git a/docs/tutorials/wiki/src/views/README.txt b/docs/tutorials/wiki/src/views/README.txt
index dcb3605b8..bd67221cc 100644
--- a/docs/tutorials/wiki/src/views/README.txt
+++ b/docs/tutorials/wiki/src/views/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