diff options
| author | Michael Merickel <michael@merickel.org> | 2018-08-10 10:28:04 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-10 10:28:04 -0500 |
| commit | 3ee04cc62205b10eb9041b0df5e156936765202f (patch) | |
| tree | 666862c069fce963e4fac454b767f08586687686 /docs/tutorials/wiki2/src/basiclayout/README.txt | |
| parent | 0ad05afc020d2790048d4ca85d936b4ea79eae13 (diff) | |
| parent | 0760eba8fd5a0d8f0424c329ce92e9fb8d003f11 (diff) | |
| download | pyramid-3ee04cc62205b10eb9041b0df5e156936765202f.tar.gz pyramid-3ee04cc62205b10eb9041b0df5e156936765202f.tar.bz2 pyramid-3ee04cc62205b10eb9041b0df5e156936765202f.zip | |
Merge branch 'master' into feature/more-samesite-work
Diffstat (limited to 'docs/tutorials/wiki2/src/basiclayout/README.txt')
| -rw-r--r-- | docs/tutorials/wiki2/src/basiclayout/README.txt | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/docs/tutorials/wiki2/src/basiclayout/README.txt b/docs/tutorials/wiki2/src/basiclayout/README.txt index 7b33da610..5d5133e34 100644 --- a/docs/tutorials/wiki2/src/basiclayout/README.txt +++ b/docs/tutorials/wiki2/src/basiclayout/README.txt @@ -20,7 +20,17 @@ Getting Started env/bin/pip install -e ".[testing]" -- Configure the database. +- Initialize and upgrade the database using Alembic. + + - Generate your first revision. + + env/bin/alembic -c development.ini revision --autogenerate -m "init" + + - Upgrade to that revision. + + env/bin/alembic -c development.ini upgrade head + +- Load default data into the database using a script. env/bin/initialize_tutorial_db development.ini |
