Fork of github.com/did-method-plc/did-method-plc
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

server: redirect / to github repo (#23)

authored by

bnewbold and committed by
GitHub
8c6a8f90 ee4e5f53

+5
+5
packages/server/src/routes.ts
··· 7 7 export const createRouter = (ctx: AppContext): express.Router => { 8 8 const router = express.Router() 9 9 10 + router.get('/', async function (req, res) { 11 + // HTTP temporary redirect to project git repo 12 + res.redirect(302, 'https://github.com/bluesky-social/did-method-plc') 13 + }) 14 + 10 15 router.get('/_health', async function (req, res) { 11 16 const { db, version } = ctx 12 17 try {