Skip to content

Commit

Permalink
update-deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
Liam Faruq authored and Liam Faruq committed Oct 29, 2023
1 parent 6dcf83f commit 9960032
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ node_modules
.env
telegram-service/.env
./telegram-service/.env
.vercel
3 changes: 2 additions & 1 deletion telegram-service/.gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.env
.env
.vercel
8 changes: 6 additions & 2 deletions telegram-service/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
{
"name": "telegram-service",
"version": "1.0.0",
"main": "index.js",
"main": "bot.js",
"engines": {
"node": "18.x"
},
"scripts": {
"start": "tsc && node ./dist/bot.js",
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon ./src/bot.ts"
"dev": "nodemon ./src/bot.ts",
"prod": "node ./dist/bot.js"
},
"keywords": [],
"author": "",
Expand Down

0 comments on commit 9960032

Please sign in to comment.