Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Database Connection (PostgreSQL)
DATABASE_URL=postgresql://user:password@host/database

# Anthropic API Key
ANTHROPIC_API_KEY=sk-ant-...

# Google Cloud (for compute/storage)
GCP_SA_KEY={"type":"service_account",...}
GCP_PROJECT_ID=your-project
GCS_BUCKET_NAME=your-bucket

# App URL (for callbacks/webhooks)
APP_URL=http://localhost:3000
42 changes: 42 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files (can opt-in for committing if needed)
.env*
!.env.example

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
27 changes: 26 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,26 @@
# vellum-assistant
# Vellum Assistant

AI-powered assistant platform by Vellum.

## Repository Structure

```
/
├── web/ # Next.js web application
├── editor-templates/ # Agent editor templates
└── .github/ # GitHub Actions workflows
```

## Web Application

The web app lives in `/web`. See [web/README.md](./web/README.md) for setup instructions.

```bash
cd web
npm install
npm run dev
```

## License

Proprietary - Vellum AI
Loading