Bowe Strickland
2018-10-27 6e49871feaa1a60549206cf5512c9fb7f3d5fd56
commit | author | age
b488f7 1 sqla_demo
68f673 2 =========
c90471 3
PE 4 Getting Started
5 ---------------
6
b488f7 7 - Change directory into your newly created project.
c90471 8
b488f7 9     cd sqla_demo
c90471 10
b488f7 11 - Create a Python virtual environment.
c90471 12
b488f7 13     python3 -m venv env
c90471 14
b488f7 15 - Upgrade packaging tools.
SP 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
8f30e8 23 - Initialize and upgrade the database using Alembic.
SP 24
25     - Generate your first revision.
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
33 - Load default data into the database using a script.
b488f7 34
SP 35     env/bin/initialize_sqla_demo_db development.ini
36
37 - Run your project's tests.
38
39     env/bin/pytest
40
41 - Run your project.
42
43     env/bin/pserve development.ini