node-entry & api key

This commit is contained in:
matteo
2018-11-08 18:36:12 +01:00
parent 715831a780
commit 713555beba
2 changed files with 11 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
AIzaSyA21Odw9UdfiOJnxvA_eDfOW0OxuUfHKig
+10
View File
@@ -0,0 +1,10 @@
const express = require('express');
const app = express();
app.use(express.static(__dirname + '/build'));
app.get('/test', (req, res) => {
res.send({ ok: 'ok get' });
});
app.listen(8000, () => console.log('listen on 8000'));