Я хотел бы использовать «шаблонную» структуру (см. Github), использовать firebase для производительного кода, но ngrok во время разработки.Как я могу это объединить?
https://github.com/actions-on-google/dialogflow-webhook-boilerplate-nodejs/blob/master/functions/index.js
'use strict';
const {dialogflow} = require('actions-on-google');
const functions = require('firebase-functions');
const app = dialogflow({debug: true});
app.intent('Default Welcome Intent', (conv) => {
conv.close('Hello, World!');
// Complete your fulfillment logic and
// send a response when the function is done executing
});
exports.yourAction = functions.https.onRequest(app);