diff --git a/config/redis.ts b/config/redis.ts index 6ca0e02..d8b7b2c 100644 --- a/config/redis.ts +++ b/config/redis.ts @@ -40,7 +40,7 @@ const redisConfig: RedisConfig = { port: Env.get('REDIS_PORT'), password: Env.get('REDIS_PASSWORD', ''), db: 0, - keyPrefix: 'artclick:', + keyPrefix: 'linkyjs:', healthCheck: true }, }, diff --git a/start/routes.ts b/start/routes.ts index 1247cba..826db1e 100644 --- a/start/routes.ts +++ b/start/routes.ts @@ -16,7 +16,7 @@ Route.get('/', async ({response}: HttpContextContract) => { }) Route.get('/source', async ({response}: HttpContextContract) => { - return response.redirect('https://github.com/arthurdanjou/artclick') + return response.redirect('https://github.com/linkyjs/core') }) Route.get('health', async ({response}: HttpContextContract) => {