-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(docs): Completed Tutorial Section (#18)
* Added tutorial index * Added automation tutorial * Removed h2
- Loading branch information
Showing
2 changed files
with
27 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,19 @@ | ||
# Automatically Running the Software | ||
|
||
Tasks can only recur when the Notion Recurring Tasks software is executed. Without automating the software execution, you must manually run the software every time you want your tasks to update. By automating this step you can truly achieve the set-and-forget goal recurring tasks should be. | ||
|
||
There are many options available for automatically calling software. Below are a collection of options categorized after operating system. | ||
|
||
**Mac** | ||
|
||
- [Scheduling Cron Jobs with Crontab](https://linuxize.com/post/scheduling-cron-jobs-with-crontab/) | ||
- [Use Launchd to Run Scripts on Schedule](https://www.maketecheasier.com/use-launchd-run-scripts-on-schedule-macos/) | ||
|
||
**Linux** | ||
|
||
- [Scheduling Cron Jobs with Crontab](https://linuxize.com/post/scheduling-cron-jobs-with-crontab/) | ||
- [Run a Script on Startup](https://www.baeldung.com/linux/run-script-on-startup) | ||
|
||
**Windows** | ||
|
||
- [How to use Task Scheduler on Windows](https://www.tomsguide.com/how-to/how-to-use-task-scheduler-on-windows) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Tutorials | ||
|
||
This part of the project documentation focuses on a **learning-oriented** approach. You'll learn how to get started with the code of this project. | ||
This section of the documentation focus on taking a *learning-oriented* approach to the software. Included tutorials will be concrete and avoid distractions to keep you moving forward with the software. If you are interested in solving practical issues or understanding the software more in-depth, check out the [how-to-guides](../how-to-guide/index.md) and [explanation](../explanation/index.md) sections. | ||
|
||
> **Note:** Expand this section by considering the following points: | ||
The available tutorials are: | ||
|
||
- Help newcomers with getting started | ||
- Teach readers about your library by making them write code | ||
- Inspire confidence through examples that work for everyone, repeatably | ||
- Give readers an immediate sense of achievement | ||
- Show concrete examples, no abstractions | ||
- Provide the minimum necessary explanation | ||
- Avoid distractions | ||
- [Getting Started](getting-started/index.md) | ||
|
||
Learn how to get started using this software with easy-to-follow steps. | ||
|
||
- [Automatically Running the Software](automating-the-software.md) | ||
|
||
Learn how to automate updating your recurring tasks by running this software automatically. |