Skip to content

Commit

Permalink
Small changes and fixed typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
bicarlsen committed Dec 2, 2021
1 parent 8f7bb6e commit 906996c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion source/get_started/full_tutorial/containers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ Setting Up Your Project Tree
.. note::
When naming files and folders avoid using spaces. Use underscores (_) or hyphens (-) instead.

Notice that we didn't include the ``description`` data in the Container file for Recipe A. If we're not going to use a field we can just leave it out. We also added a new ``metadata`` field. This allows us to attach data to our data. Child Containers inherit the metadata from their ancestors, but can overwrite it by declaring a new value with the same name.
Notice that we didn't include the ``description`` data in the Container file for Recipe A. If we're not going to use a field we can just leave it out. We also added a new ``metadata`` field. This allows us to attach metadata to our data. Child Containers inherit the metadata from their ancestors, but can overwrite it by declaring a new value with the same name.

On to the batches. From the Recipe A Container, make two new folders called ``batch-1`` and ``batch-2`` and make them Containers.

Expand Down
1 change: 1 addition & 0 deletions source/get_started/full_tutorial/index.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*****************
In-Depth Tutorial
*****************
:fa:`clock` **60 minutes**

This tutorial will walk you through the full functionality of Thot. You'll recreate the same Firworks example as in the Quick Start chapter, but this time dive into more of the details. You'll learn different ways to use Thot Desktop and/or CLI, and how to write your own scripts.

Expand Down
2 changes: 1 addition & 1 deletion source/get_started/full_tutorial/scripts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Now we need to tell Thot which Containers to run this script from. This is done
This tells Thot to run the ``noise_stats.py`` script from this Container. The ``script`` field is the path to the script to run, it can be a relative or absolute path. The special ``root:`` directive points to the project root.

Before adding the script to the rest of the batches, let's try it out.
Before adding the script to the rest of the batches, let's try it out. In your terminal run

.. code-block:: bash
Expand Down
2 changes: 1 addition & 1 deletion source/get_started/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ from your terminal. This will install both the ``thot-data`` and ``thot-cli`` pa

* **Ubuntu:** From the terminal run

.. code-block:: bask
.. code-block:: bash
sudo dpkg -i ThotDesktop.deb
Expand Down
3 changes: 2 additions & 1 deletion source/get_started/quick_start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
***********
Quick Start
***********
:fa:`clock` **20 minutes**

Our deadline is approaching quickly, so we need to put a rush on this project. Luckily, our engineers have already collected the data and written the analysis scripts. It's up to you to run the analysis and get back to us with the results ASAP!

Expand Down Expand Up @@ -200,7 +201,7 @@ Setting Up Your Project Tree
.. note::
When naming files and folders avoid using spaces. Use underscores (_) or hyphens (-) instead.

Notice that we didn't include the ``description`` data in the Container file for Recipe A. If we're not going to use a field we can just leave it out. We also added a new ``metadata`` field. This allows us to attach data to our data. Child Containers inherit the metadata from their ancestors, but can overwrite it by declaring a new value with the same name.
Notice that we didn't include the ``description`` data in the Container file for Recipe A. If we're not going to use a field we can just leave it out. We also added a new ``metadata`` field. This allows us to attach metadata to our data. Child Containers inherit the metadata from their ancestors, but can overwrite it by declaring a new value with the same name.

On to the batches. From the Recipe A Container, make two new folders called ``batch-1`` and ``batch-2`` and make them Containers.

Expand Down

0 comments on commit 906996c

Please sign in to comment.