Skip to content

Commit

Permalink
bump express-sms-autoresponder telnyx package version
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasassisrosa committed Oct 15, 2024
1 parent f3ae014 commit 5ebaaef
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 7 deletions.
3 changes: 2 additions & 1 deletion express-sms-autoresponder/.env.sample
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
TELNYX_API_KEY=<INSERT_API_KEY>
TELNYX_API_KEY=
PORT=8000
2 changes: 1 addition & 1 deletion express-sms-autoresponder/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import express from "express";

const telnyx = new Telnyx(String(process.env.TELNYX_API_KEY || ""));
const app = express();
const port = 5000;
const port = process.env.PORT;

app.use(express.json());

Expand Down
32 changes: 28 additions & 4 deletions express-sms-autoresponder/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion express-sms-autoresponder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"dependencies": {
"dotenv": "^16.4.0",
"express": "^4.21.1",
"telnyx": "2.0.0-alpha.7"
"telnyx": "2.0.0-beta.3"
},
"devDependencies": {
"@types/express": "^5.0.0",
Expand Down

0 comments on commit 5ebaaef

Please sign in to comment.