mirror of
https://github.com/vitalityAI/therapist.git
synced 2025-04-06 04:50:16 -04:00
refactor api routes
This commit is contained in:
parent
3cf99f0fd4
commit
527e58b2b1
13
src/call.js
13
src/call.js
|
@ -1,8 +1,8 @@
|
|||
import * as dotenv from "dotenv";
|
||||
import { Router } from "express";
|
||||
dotenv.config();
|
||||
|
||||
import twilio from "twilio";
|
||||
import express from "express";
|
||||
|
||||
const accountSid = process.env.TWILIO_ACCOUNT_SID;
|
||||
const authToken = process.env.TWILIO_AUTH_TOKEN;
|
||||
|
@ -11,8 +11,7 @@ const phone_number = process.env.TWILIO_PHONE_NUMBER;
|
|||
const client = new twilio.Twilio(accountSid, authToken);
|
||||
const VoiceResponse = twilio.twiml.VoiceResponse;
|
||||
|
||||
const app = express();
|
||||
app.use(express.urlencoded({ extended: false }));
|
||||
const app = Router();
|
||||
|
||||
app.post("/receive", (req, res) => {
|
||||
// Use the Twilio Node.js SDK to build an XML response
|
||||
|
@ -58,10 +57,4 @@ app.post("/respond", async (req, res) => {
|
|||
res.send(twiml.toString());
|
||||
});
|
||||
|
||||
// Create an HTTP server and listen for requests on port 3000
|
||||
app.listen(3000, () => {
|
||||
console.log(
|
||||
"Now listening on port 3000. " +
|
||||
"Be sure to restart when you make code changes!"
|
||||
);
|
||||
});
|
||||
export default app
|
5
src/db.js
Normal file
5
src/db.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
import { Prisma, PrismaClient } from "@prisma/client";
|
||||
|
||||
const db = new PrismaClient()
|
||||
|
||||
export {db};
|
15
src/index.js
Normal file
15
src/index.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
import express from "express";
|
||||
import call from "./call.js";
|
||||
|
||||
const app = express();
|
||||
app.use(express.urlencoded({ extended: false }));
|
||||
|
||||
app.use('/call', call)
|
||||
|
||||
// Create an HTTP server and listen for requests on port 3000
|
||||
app.listen(3000, () => {
|
||||
console.log(
|
||||
"Now listening on port 3000. " +
|
||||
"Be sure to restart when you make code changes!"
|
||||
);
|
||||
});
|
5
src/session.js
Normal file
5
src/session.js
Normal file
|
@ -0,0 +1,5 @@
|
|||
import { db } from "./db";
|
||||
|
||||
const session = () => {
|
||||
db.session.create({})
|
||||
}
|
Loading…
Reference in New Issue
Block a user