feat(package): Update dev script

This commit is contained in:
ItzCrazyKns 2024-04-09 18:48:26 +05:30
parent d1c74c861e
commit 8f3de05a38
No known key found for this signature in database
GPG Key ID: 8162927C7CCE3065
2 changed files with 7 additions and 1 deletions

View File

@ -6,7 +6,7 @@
"scripts": {
"start": "node --env-file=.env dist/app.js",
"build": "tsc",
"dev": "nodemon --env-file=.env src/app.ts",
"dev": "nodemon -r dotenv/config src/app.ts",
"format": "prettier . --check",
"format:write": "prettier . --write"
},
@ -24,6 +24,7 @@
"compute-cosine-similarity": "^1.1.0",
"compute-dot": "^1.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"langchain": "^0.1.30",
"ws": "^8.16.0",

5
ui/app/discover/page.tsx Normal file
View File

@ -0,0 +1,5 @@
const Page = () => {
return <div>page</div>;
};
export default Page;