From 2532130d83674dd974eacfe2941e4b44cc39cfe2 Mon Sep 17 00:00:00 2001 From: gooneyryan Date: Mon, 27 Apr 2026 01:26:09 +0800 Subject: [PATCH] Initial commit: project scaffold with README and .gitignore --- .gitignore | 20 ++++++++++++++++++++ README.md | 18 ++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 .gitignore create mode 100644 README.md diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..315d4f3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,20 @@ +# Python +__pycache__/ +*.pyc +*.pyo +.env +venv/ + +# Editor +.vscode/ +.idea/ +*.swp +*.swo + +# OS +.DS_Store +Thumbs.db + +# Temp +*.log +*.tmp diff --git a/README.md b/README.md new file mode 100644 index 0000000..26d3224 --- /dev/null +++ b/README.md @@ -0,0 +1,18 @@ +# AI-Novels + +AI 辅助创作的各类小说项目仓库。 + +## 说明 + +每个独立的小说作品在同一目录下按独立文件或子目录组织。 + +## 目录结构 + +``` +AI-Novels/ +├── README.md +└── 作品1/ + ├── outline.md — 大纲 + ├── chapters/ — 章节内容 + └── notes.md — 创作笔记 +```