mirror of
https://github.com/decolua/9router.git
synced 2026-05-08 12:01:28 +00:00
- Added `DOCKER.md` documentation to guide users on using Docker with the project. - Migrated Dockerfile to use `oven/bun:1-alpine` for performance improvements. - Refined build process and permissions in the container for better compatibility. - Excluded `.idea/` files in `.gitignore`. - Enhanced `.npmignore` to clean redundant blank lines.
32 lines
368 B
Plaintext
32 lines
368 B
Plaintext
# Database files - NEVER publish
|
|
data/
|
|
**/data/
|
|
**/db.json
|
|
|
|
# Development
|
|
src/
|
|
docs/
|
|
test/
|
|
agents/
|
|
scripts/
|
|
worker/
|
|
shared-sse/
|
|
copilot-api/
|
|
CLIProxyAPI/
|
|
|
|
# Config files
|
|
*.md
|
|
!README.md
|
|
.gitignore
|
|
.env*
|
|
jsconfig.json
|
|
eslint.config.mjs
|
|
postcss.config.mjs
|
|
next.config.mjs
|
|
tsconfig.json
|
|
|
|
# Build artifacts that shouldn't be published
|
|
.next/cache/
|
|
.next/standalone/data/
|
|
|