Skip to content
This repository was archived by the owner on Mar 4, 2023. It is now read-only.

Commit f1bb70f

Browse files
committed
clean todos, rdy
1 parent 903bbd5 commit f1bb70f

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.qmake.conf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,3 @@ win32:cross_compile: CONFIG += winrt
66
DEFINES += QT_DEPRECATED_WARNINGS QT_ASCII_CAST_WARNINGS
77

88
MODULE_VERSION = 4.0.0
9-
10-
#TODO before release: QMAKE_CXXFLAGS += -Wold-style-cast

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ The following examples descibe the different parts of the module, and how to use
119119
- Add a second device to your account to synchronize data between them
120120

121121
#### Initialize QtDataSync
122-
After adding datasync to your project, the next step is to setup datasync. In your main, you need to once create a setup. This **must** be done before you create any other datasync class, but after that, you can use it in your whole application from any thread. Multi-Process setups are possible, but more complicated. See TODO for more details.
122+
After adding datasync to your project, the next step is to setup datasync. In your main, you need to once create a setup. This **must** be done before you create any other datasync class, but after that, you can use it in your whole application from any thread. Multi-Process setups are possible, but more complicated. See documentation for more details.
123123

124124
To setup datasync, simply use the Setup class:
125125
```cpp
@@ -164,7 +164,7 @@ foreach(Data d, store->loadAll<Data>()) {
164164
```
165165

166166
#### Setting up the remote server (qdsapp)
167-
In order to synchronize data, some server is needed. The quickest way for development is to use the prepared docker image in the sample projects folder. Just run `docker-compose up -d` to start it. It will create a postgres as well as a qdsapp instance to be used on port 4242. More details on how to configure the the server can be found TODO.
167+
In order to synchronize data, some server is needed. The quickest way for development is to use the prepared docker image in the sample projects folder. Just run `docker-compose up -d` to start it. It will create a postgres as well as a qdsapp instance to be used on port 4242. More details on how to configure the the server can be found in the documentation.
168168

169169
Once thats done, the library will automatically connect to the server and create an account, if the server was correctly configured with the setup. To synchronize changes, all you need to do now is to add a second device to your account.
170170

0 commit comments

Comments
 (0)