Bowe Strickland
2018-10-27 6e49871feaa1a60549206cf5512c9fb7f3d5fd56
commit | author | age
293942 1 myproj
68f673 2 ======
458d51 3
SP 4 Getting Started
5 ---------------
6
293942 7 - Change directory into your newly created project.
458d51 8
3ec0fc 9     cd tutorial
458d51 10
293942 11 - Create a Python virtual environment.
458d51 12
293942 13     python3 -m venv env
458d51 14
293942 15 - Upgrade packaging tools.
SP 16
2c0e3e 17     env/bin/pip install --upgrade pip setuptools
293942 18
SP 19 - Install the project in editable mode with its testing requirements.
20
21     env/bin/pip install -e ".[testing]"
22
487df3 23 - Initialize and upgrade the database using Alembic.
293942 24
63f243 25     - Generate your first revision.
SP 26
27         env/bin/alembic -c development.ini revision --autogenerate -m "init"
28
29     - Upgrade to that revision.
30
31         env/bin/alembic -c development.ini upgrade head
32
487df3 33 - Load default data into the database using a script.
63f243 34
487df3 35     env/bin/initialize_tutorial_db development.ini
293942 36
SP 37 - Run your project's tests.
38
39     env/bin/pytest
40
41 - Run your project.
42
43     env/bin/pserve development.ini