add vikunja integration

This commit is contained in:
Matthias Hochmeister
2026-03-05 18:07:18 +01:00
parent fb5acd3d52
commit e9463c1c66
13 changed files with 683 additions and 0 deletions

View File

@@ -38,6 +38,10 @@ interface EnvironmentConfig {
tokenId: string;
tokenSecret: string;
};
vikunja: {
url: string;
apiToken: string;
};
}
const environment: EnvironmentConfig = {
@@ -73,6 +77,10 @@ const environment: EnvironmentConfig = {
tokenId: process.env.BOOKSTACK_TOKEN_ID || '',
tokenSecret: process.env.BOOKSTACK_TOKEN_SECRET || '',
},
vikunja: {
url: process.env.VIKUNJA_URL || '',
apiToken: process.env.VIKUNJA_API_TOKEN || '',
},
};
export default environment;