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
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: CI

on:
push:
branches: [main]
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build
25 changes: 25 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# CLAUDE.md — MIST.cash Docs

## Commands

- `npm run dev` — Start local dev server with HMR
- `npm run build` — Build static site to `dist/`
- `npm run preview` — Preview the production build locally

## Directory Layout

```
├── astro.config.mjs # Astro + Starlight configuration
├── src/
│ ├── content.config.ts # Content collection schema
│ ├── content/docs/ # Markdown/MDX documentation pages
│ │ ├── index.mdx
│ │ ├── getting-started.mdx
│ │ ├── guides/ # Deposit, withdraw, ZK proofs, Merkle trees
│ │ ├── packages/ # SDK, config, React packages
│ │ └── reference/ # API, types, contract ABI
│ └── styles/
│ └── custom.css # Custom Starlight theme overrides
├── tsconfig.json
└── package.json
```
Loading