You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/documentation.md
+2-3Lines changed: 2 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,7 @@ Job that depends on that Resource that changed. If there is then a new job/s wil
16
16
Then when it finishes it checks if another job depends on it and queues for that job/s to be triggered.
17
17
18
18
Workers execute everything on the host machine for now (either on the server if local or on the worker host), each time something is executed
19
-
it's done on a unique `tmp/` folder so it never collisions with a previous run, will potentially [change](https://github.com/xescugc/qid/issues/57) on the future
19
+
it's done on a unique `$XDG_CACHE_HOME/qid/{UUID}/` folder so it never collisions with a previous run, will potentially [change](https://github.com/xescugc/qid/issues/57) on the future
20
20
21
21
## Server Configuration
22
22
@@ -28,8 +28,7 @@ it's done on a unique `tmp/` folder so it never collisions with a previous run,
28
28
*`db-user`: Database User
29
29
*`db-password`: Database Password
30
30
*`db-name`: Database Name
31
-
*`sqlite`: Uses SQLite
32
-
*`db-file`: The file in which to store the DB (does not need to exist as it'll be created)
31
+
*`sqlite`: Uses SQLite. The file will be at `$XDG_DATA_HOME/qid/qid.db`
33
32
*`mem`: Run the DB in memory, which basically uses the SQLite memory option
34
33
*`run-worker`: Specifies if you want to run the workers on the same server or not
35
34
*`concurrency`: How many parallel instances has the worker
0 commit comments