Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

app.js 307 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
  1. // This loads the environment variables from the .env file
  2. require('dotenv-extended').load();
  3. // This startup file is meant to be used only when deploying any of the samples to an Azure Website
  4. var botName = process.env.BOT || 'RealEstateBot';
  5. var botModule = './' + botName + '/app';
  6. require(botModule);
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...