This commit is contained in:
2021-06-14 23:49:14 +02:00
parent 17f5d08be0
commit 7f4ce8cde7
2 changed files with 2 additions and 2 deletions

View File

@@ -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
},
},

View File

@@ -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) => {