Skip to content

Commit

Permalink
Update output, .gitignore, and README.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
stevepiercy committed Jan 7, 2021
1 parent c725859 commit 6645c47
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 19 deletions.
22 changes: 11 additions & 11 deletions docs/tutorials/wiki2/definingmodels.rst
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ like the following.

.. code-block:: text
Successfully installed bcrypt-3.1.7 cffi-1.13.2 pycparser-2.19 tutorial
Successfully installed bcrypt-3.2.0 cffi-1.14.4 pycparser-2.20 tutorial
Remove ``mymodel.py``
Expand Down Expand Up @@ -190,19 +190,19 @@ Success executing these commands will generate output similar to the following.

.. code-block:: text
2019-12-28 02:02:31,841 INFO [alembic.runtime.migration:154][MainThread] Context impl SQLiteImpl.
2019-12-28 02:02:31,841 INFO [alembic.runtime.migration:161][MainThread] Will assume non-transactional DDL.
2019-12-28 02:02:31,844 INFO [alembic.autogenerate.compare:134][MainThread] Detected added table 'users'
2019-12-28 02:02:31,845 INFO [alembic.autogenerate.compare:134][MainThread] Detected added table 'pages'
2019-12-28 02:02:31,853 INFO [alembic.autogenerate.compare:621][MainThread] Detected removed index 'my_index' on 'models'
2019-12-28 02:02:31,853 INFO [alembic.autogenerate.compare:176][MainThread] Detected removed table 'models'
Generating <somepath>/tutorial/tutorial/alembic/versions/20191228_226a73ffaeef.py ... done
2021-01-07 08:00:14,550 INFO [alembic.runtime.migration:155][MainThread] Context impl SQLiteImpl.
2021-01-07 08:00:14,551 INFO [alembic.runtime.migration:158][MainThread] Will assume non-transactional DDL.
2021-01-07 08:00:14,553 INFO [alembic.autogenerate.compare:134][MainThread] Detected added table 'users'
2021-01-07 08:00:14,553 INFO [alembic.autogenerate.compare:134][MainThread] Detected added table 'pages'
2021-01-07 08:00:14,558 INFO [alembic.autogenerate.compare:622][MainThread] Detected removed index 'my_index' on 'models'
2021-01-07 08:00:14,558 INFO [alembic.autogenerate.compare:176][MainThread] Detected removed table 'models'
Generating <somepath>/tutorial/tutorial/alembic/versions/20210107_bc9a3dead43a.py ... done
.. code-block:: text
2019-12-28 02:03:15,390 INFO [alembic.runtime.migration:154][MainThread] Context impl SQLiteImpl.
2019-12-28 02:03:15,391 INFO [alembic.runtime.migration:161][MainThread] Will assume non-transactional DDL.
2019-12-28 02:03:15,393 INFO [alembic.runtime.migration:513][MainThread] Running upgrade a8e203c3ce9c -> 226a73ffaeef, use new models Page and User
2021-01-07 08:00:21,318 INFO [alembic.runtime.migration:155][MainThread] Context impl SQLiteImpl.
2021-01-07 08:00:21,318 INFO [alembic.runtime.migration:158][MainThread] Will assume non-transactional DDL.
2021-01-07 08:00:21,320 INFO [alembic.runtime.migration:517][MainThread] Running upgrade 90658c4a9673 -> bc9a3dead43a, use new models Page and User
.. _wiki2_alembic_overview:
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/wiki2/src/basiclayout/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dist/
nosetests.xml
env*/
tmp/
Data.fs*
Data*.fs*
*.sublime-project
*.sublime-workspace
.*.sw?
Expand Down
7 changes: 4 additions & 3 deletions docs/tutorials/wiki2/src/basiclayout/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ myproj
Getting Started
---------------

- Change directory into your newly created project.
- Change directory into your newly created project if not already there. Your
current directory should be the same as this README.txt file and setup.py.

cd tutorial

- Create a Python virtual environment.
- Create a Python virtual environment, if not already created.

python3 -m venv env

- Upgrade packaging tools.
- Upgrade packaging tools, if necessary.

env/bin/pip install --upgrade pip setuptools

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/wiki2/src/installation/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dist/
nosetests.xml
env*/
tmp/
Data.fs*
Data*.fs*
*.sublime-project
*.sublime-workspace
.*.sw?
Expand Down
7 changes: 4 additions & 3 deletions docs/tutorials/wiki2/src/installation/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,16 @@ myproj
Getting Started
---------------

- Change directory into your newly created project.
- Change directory into your newly created project if not already there. Your
current directory should be the same as this README.txt file and setup.py.

cd tutorial

- Create a Python virtual environment.
- Create a Python virtual environment, if not already created.

python3 -m venv env

- Upgrade packaging tools.
- Upgrade packaging tools, if necessary.

env/bin/pip install --upgrade pip setuptools

Expand Down

0 comments on commit 6645c47

Please sign in to comment.