Steve Piercy
2018-09-22 2a45fe74f9598b4e726ab17ce17948d4e709894b
commit | author | age
54d9dd 1 hello_world
68f673 2 ===========
c90471 3
54d9dd 4 Getting Started
SP 5 ---------------
c90471 6
54d9dd 7 - Change directory into your newly created project.
c90471 8
54d9dd 9     cd hello_world
SP 10
11 - Create a Python virtual environment.
12
13     python3 -m venv env
14
15 - Upgrade packaging tools.
16
17     env/bin/pip install --upgrade pip setuptools
18
19 - Install the project in editable mode with its testing requirements.
20
21     env/bin/pip install -e ".[testing]"
22
23 - Run your project's tests.
24
25     env/bin/pytest
26
27 - Run your project.
28
29     env/bin/pserve development.ini