Add initial project files including .gitignore, README, package.json, and TypeScript configuration

- Created .gitignore to exclude unnecessary files
- Added README.md with installation and usage instructions
- Initialized package.json with dependencies and configurations
- Set up tsconfig.json for TypeScript compiler options
- Implemented basic index.ts file for logging
- Added Supabase function structure in ai-structured directory
- Created test files for user authentication and function invocation
This commit is contained in:
2026-01-13 09:39:03 -06:00
commit c0599e30ab
12 changed files with 590 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
# genesis-2
To install dependencies:
```bash
bun install
```
To run:
```bash
bun run index.ts
```
This project was created using `bun init` in bun v1.3.0. [Bun](https://bun.com) is a fast all-in-one JavaScript runtime.