Initial commit: project scaffold with README and .gitignore

This commit is contained in:
gooneyryan 2026-04-27 01:26:09 +08:00
commit 2532130d83
2 changed files with 38 additions and 0 deletions

20
.gitignore vendored Normal file
View File

@ -0,0 +1,20 @@
# Python
__pycache__/
*.pyc
*.pyo
.env
venv/
# Editor
.vscode/
.idea/
*.swp
*.swo
# OS
.DS_Store
Thumbs.db
# Temp
*.log
*.tmp

18
README.md Normal file
View File

@ -0,0 +1,18 @@
# AI-Novels
AI 辅助创作的各类小说项目仓库。
## 说明
每个独立的小说作品在同一目录下按独立文件或子目录组织。
## 目录结构
```
AI-Novels/
├── README.md
└── 作品1/
├── outline.md — 大纲
├── chapters/ — 章节内容
└── notes.md — 创作笔记
```