coolify integration.
This commit is contained in:
16
app/renderer/src/lib/query-keys.js
Normal file
16
app/renderer/src/lib/query-keys.js
Normal file
@@ -0,0 +1,16 @@
|
||||
export const queryKeys = {
|
||||
servers: {
|
||||
all: ['servers'],
|
||||
},
|
||||
projects: {
|
||||
local: ['projects', 'local'],
|
||||
deployed: (serverId) => ['projects', 'deployed', serverId],
|
||||
containers: (serverId) => ['projects', 'containers', serverId],
|
||||
},
|
||||
logs: {
|
||||
container: (serverId, remotePath) => ['logs', serverId, remotePath],
|
||||
},
|
||||
config: {
|
||||
all: ['config'],
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user