Skip to content

Commit

Permalink
Remove chapter numbers from paths in tutorial files
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-traverse committed Nov 10, 2024
1 parent 3ef3648 commit e32ba73
Show file tree
Hide file tree
Showing 11 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ With TRAC D.A.P. you can build and run production-ready models right on your des
All you need is an IDE, Python and the tracdap-runtime Python package.
TRAC D.A.P. requires Python 3.8 or later.

The [modelling tutorial](https://tracdap.finos.org/en/stable/modelling/tutorial/chapter_1_hello_world.html)
The [modelling tutorial](https://tracdap.finos.org/en/stable/modelling/tutorial/hello_world.html)
shows you how to get set up and write your first models. You can write models locally using
an IDE or notebook, once the model is working t can be loaded to the platform without modification.
TRAC D.A.P. will validate the model and ensure it behaves the same on-platform as it does locally.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Errors in streaming calls
-------------------------

.. seealso::
See :doc:`./chapter_4_streaming` for more details on the streaming data API.
See :doc:`./streaming` for more details on the streaming data API.

**Errors in upload streams**

Expand Down Expand Up @@ -126,7 +126,7 @@ to no-op functions to avoid unhandled or duplicate events.
**Using promises for streaming operations**

In :doc:`./chapter_4_streaming`, the streaming operations are wrapped up into promises and errors are
In :doc:`./streaming`, the streaming operations are wrapped up into promises and errors are
passed directly to the promise *resolve()* method. Once the operation is wrapped up into a promise,
errors can be processed using a regular ``.catch()``.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Setting up a dev environment
----------------------------

The easiest way to get a local development instance of TRAC is to clone the
`TRAC d.a.p. GitHub Repository <https://github.com/finos/tracdap>`_
`TRAC GitHub Repository <https://github.com/finos/tracdap>`_
and follow the instructions in the main
`README <https://github.com/finos/tracdap#readme>`_
file.
Expand Down
10 changes: 5 additions & 5 deletions doc/app_dev/tutorial/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ App Dev Tutorial

.. toctree::

./chapter_1_hello_world
./chapter_2_metadata_mojo
./chapter_3_using_data
./chapter_4_streaming
./chapter_5_error_handling
./hello_world
./metadata_mojo
./using_data
./streaming
./error_handling
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Setting up a new project
If you are starting a project from scratch, it's a good idea to follow the standard
Python conventions for package naming and folder layout. If you are working on an
existing project or are already familiar with the Python conventions, then you can
:ref:`skip this section <modelling/tutorial/chapter_1_hello_world:Installing the runtime>`
:ref:`skip this section <modelling/tutorial/hello_world:Installing the runtime>`

For this example we will create a project folder called example-project. Typically
this will be a Git repository. You will also want to create a Python virtual environment
Expand Down
6 changes: 3 additions & 3 deletions doc/modelling/tutorial/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ Modelling Tutorial

.. toctree::

./chapter_1_hello_world
./chapter_2_using_data
./chapter_3_inputs_and_outputs
./hello_world
./using_data
./inputs_and_outputs
File renamed without changes.

0 comments on commit e32ba73

Please sign in to comment.