Skip to content

Commit

Permalink
codecell analytics
Browse files Browse the repository at this point in the history
  • Loading branch information
ankushKun committed Aug 20, 2024
1 parent 781da69 commit 5f34520
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion next_app/backend/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const db = new sqlite3.Database(':memory:');
const app = express();
app.use(express.json());
app.use(cors());
const port = process.env.PORT || 8000;
const port = process.env.PORT || 3001;

type TBody = {
action: "codecell_load" | "codecell_run"
Expand Down
2 changes: 1 addition & 1 deletion next_app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"lint": "next lint",
"deploy": "pnpm run build && gh-pages -d out",
"backend:dev": "nodemon --watch backend --exec tsx backend/index.ts",
"backend:start": "tsx backend/index.ts"
"backend": "tsx backend/index.ts"
},
"dependencies": {
"@ai-sdk/google": "^0.0.24",
Expand Down

0 comments on commit 5f34520

Please sign in to comment.