This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * main.ts, programa principal. | |
| */ | |
| 'use strict'; | |
| import { config } from 'dotenv'; | |
| import * as telegraf from 'telegraf'; | |
| // Irá inicializar e procurar o arquivo .env e carregar suas chaves e valores. | |
| config(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "compilerOptions": { | |
| "target": "es6", | |
| "module": "commonjs", | |
| ... | |
| "outDir": "dist", | |
| ... | |
| "moduleResolution": "node", | |
| "typeRoots": [ | |
| "node_modules" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| ... | |
| "main": "node dist/main.js", | |
| "scripts": { | |
| "start": "node dist/main.js", | |
| "build": "tsc", | |
| "watch": "tsc -w" | |
| }, | |
| ... | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| BOT_KEY="SuaChaveQueOTelegramDeuAqui" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| node_modules | |
| .env |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm install telegraf dotenv itunes-search @types/node @types/dotenv --save-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| npm init --force | |
| npm install typescript --global | |
| npm install typescript --save-dev | |
| tsc --init |
NewerOlder