test root route

master
Matt Huntington 3 years ago
parent f1f76991d6
commit 3f245bfbd3

@ -5,6 +5,11 @@ let PORT = 3000;
if(process.env.PORT){
PORT = process.env.PORT
}
app.get('/', (req, res)=>{
res.send('hi');
}
app.listen(PORT, ()=>{
console.log('listening');
})

Loading…
Cancel
Save