Skip to content
This repository was archived by the owner on Nov 10, 2025. It is now read-only.

Commit cf2266c

Browse files
committed
docs: fix project structure to show create-mn-app itself
- Changed from showing generated project structure (hello-world template) - Now shows the actual create-mn-app tool structure - Includes bin/, src/, templates/ with descriptions - More helpful for contributors
1 parent 8332328 commit cf2266c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -121,16 +121,16 @@ Options:
121121
## Project Structure
122122

123123
```
124-
my-app/
125-
├── contracts/
126-
│ ├── hello-world.compact
127-
│ └── managed/
124+
create-mn-app/
125+
├── bin/
126+
│ └── create-midnight-app.js # CLI entry point
128127
├── src/
129-
│ ├── cli.ts
130-
│ ├── deploy.ts
131-
│ ├── providers/
132-
│ └── utils/
133-
├── .env
128+
│ ├── cli.ts # Main CLI logic
129+
│ ├── create-app.ts # Project scaffolding
130+
│ ├── installers/ # Package & proof server setup
131+
│ └── utils/ # Helpers & templates
132+
├── templates/
133+
│ └── hello-world/ # Bundled template
134134
├── package.json
135135
└── tsconfig.json
136136
```

0 commit comments

Comments
 (0)