summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki2/src/authentication/README.txt
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2016-12-23 17:59:54 -0800
committerSteve Piercy <web@stevepiercy.com>2016-12-23 17:59:54 -0800
commit4eb7f0b3ceee763d673535ae3365843096ebbc8a (patch)
treeee97d3aaebd21a6f3085f615a1d1f80b33f3290d /docs/tutorials/wiki2/src/authentication/README.txt
parentbb5ba0ea7dfeff26ed0c7c37e80e512c7d3f3b3d (diff)
downloadpyramid-4eb7f0b3ceee763d673535ae3365843096ebbc8a.tar.gz
pyramid-4eb7f0b3ceee763d673535ae3365843096ebbc8a.tar.bz2
pyramid-4eb7f0b3ceee763d673535ae3365843096ebbc8a.zip
wiki2/src/authentication update files
Diffstat (limited to 'docs/tutorials/wiki2/src/authentication/README.txt')
-rw-r--r--docs/tutorials/wiki2/src/authentication/README.txt31
1 files changed, 25 insertions, 6 deletions
diff --git a/docs/tutorials/wiki2/src/authentication/README.txt b/docs/tutorials/wiki2/src/authentication/README.txt
index 5b0101e5f..8466fd7b5 100644
--- a/docs/tutorials/wiki2/src/authentication/README.txt
+++ b/docs/tutorials/wiki2/src/authentication/README.txt
@@ -1,14 +1,33 @@
-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/initialize_tutorial_db development.ini
+- Create a Python virtual environment.
-- $VENV/bin/pserve development.ini
+ 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]"
+
+- Configure the database.
+
+ env/bin/initialize_tutorial_db development.ini
+
+- Run your project's tests.
+
+ env/bin/pytest
+
+- Run your project.
+
+ env/bin/pserve development.ini