After you have completed the common prerequisites you will need the following:
- A C++ compiler (clang or gcc)
- CMake 3.10 or later
- Make
Download and unpack the C++ Ditto SDK for your platform by following the
instructions in the Ditto C++ Install Guide.
Then, copy the Ditto.h
and libditto.a
files from the SDK into the sdk/
subdirectory of this project.
Assuming you have the prerequisites installed, you can build and run the app by following these steps:
- Create an application at https://portal.ditto.live/. Make note of the app ID and online playground token.
- Copy the
.env.sample
file at the top level of thequickstart
repo to.env
and add your app ID and online playground token. - In a shell, navigate to the
quickstart/cpp/taskscpp
directory and run the commandmake build
to build the C++ application.
The application is named taskscpp
and is located in the quickstart/cpp/taskscpp/build
directory.
You can run the application and see the available command-line options from the
quickstart/cpp/taskscpp
directory by running this command:
./build/taskscpp --help
If you run the application without any arguments, it will start running in a terminal UI mode, displaying the available tasks in a list. You can use these keys to control the UI:
- Down arrow or
j
: Move down in the list - Up arrow or
k
: Move up in the list Space
,Return
, orEnter
: Toggle the completion status of the selected taske
: Edit the title of the selected taskd
: Delete the selected taskc
: Create a new tasks
: Toggle Ditto synchrohnization on/offq
: Quit the application
If you run the QuickStart Tasks app on other devices, the data will be synced between them.