Skip to content

Commit 0c40150

Browse files
committed
feat: Add initial project structure with core functionality
1 parent e0313c9 commit 0c40150

75 files changed

Lines changed: 11351 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/nix.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Nix
2+
3+
on:
4+
pull_request:
5+
push:
6+
branches: [main]
7+
8+
jobs:
9+
build:
10+
name: Build
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: DeterminateSystems/determinate-nix-action@v3
15+
- name: Build bbdev
16+
run: nix develop

.gitignore

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
node_modules/
2+
python_modules/
3+
.venv/
4+
venv/
5+
.motia/
6+
.mermaid/
7+
dist/
8+
__pycache__/
9+
*.pyc
10+
motia-workbench.json
11+
types.d.ts
12+
appendonlydir/
13+
dump.rdb
14+
*.log
15+
output/
16+
result/
17+
18+
.cursor/
19+
.claude/

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,18 @@
11
# bbdev
22
Agent-friendly developer toolchain backend
3+
4+
## Build
5+
6+
```bash
7+
# Enter dev environment
8+
nix develop
9+
10+
# Install dependencies
11+
cd api
12+
pnpm install
13+
14+
# Start dev server
15+
pnpm dev
16+
```
17+
18+
This Project is **Built with 💙 by [Motia](https://motia.dev)**

api/package.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"name": "bbdev",
3+
"version": "0.1.0",
4+
"description": "Agent-friendly developer toolchain backend powered by Motia",
5+
"scripts": {
6+
"postinstall": "motia install",
7+
"dev": "motia dev",
8+
"dev:debug": "motia dev --debug",
9+
"build": "motia build",
10+
"start": "motia start",
11+
"clean": "rm -rf dist node_modules python_modules .motia .mermaid"
12+
},
13+
"keywords": ["motia"],
14+
"dependencies": {
15+
"motia": "0.8.2-beta.139",
16+
"zod": "^3.24.4"
17+
}
18+
}

0 commit comments

Comments
 (0)