diff --git a/gsoc2021alumnievent.html b/gsoc2021alumnievent.html new file mode 100644 index 0000000..cb91f1c --- /dev/null +++ b/gsoc2021alumnievent.html @@ -0,0 +1,13 @@ + + + + + + + gsoc2021alumnievent + + +

Welcome to gsoc2021alumnievent!

+

FOR NICK Vidal

+ + \ No newline at end of file diff --git a/server/app.js b/server/app.js index 4466b58..ade8205 100644 --- a/server/app.js +++ b/server/app.js @@ -38,6 +38,10 @@ app.use(cookieParser()) app.use(handleGithubWebhookVerificationError); +app.get("/events/gsoc2021alumnievent.html", (req, res) => { + res.sendFile(path.join(__dirname + "/../gsoc2021alumnievent.html")); +}); + app.use('/api', require('./routes')) if(process.env.NODE_ENV === 'production') {