mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
48 lines
548 B
Plaintext
48 lines
548 B
Plaintext
# Dependencies (will be installed fresh in container)
|
|
node_modules/
|
|
|
|
# Database and config (mounted as volumes)
|
|
db/
|
|
conf/
|
|
|
|
# Git
|
|
.git/
|
|
.github/
|
|
.gitignore
|
|
|
|
# IDE and editor
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
.DS_Store
|
|
|
|
# Testing
|
|
test/
|
|
|
|
# Documentation
|
|
doc/
|
|
*.md
|
|
!README.md
|
|
|
|
# Development config files
|
|
.babelrc
|
|
.husky/
|
|
.nvmrc
|
|
.prettierrc
|
|
.prettierignore
|
|
eslint.config.js
|
|
|
|
# Docker files (not needed inside container)
|
|
Dockerfile
|
|
docker-compose.yml
|
|
docker-test.sh
|
|
.dockerignore
|
|
|
|
# Logs
|
|
*.log
|
|
npm-debug.log
|
|
|
|
# Build artifacts (built fresh in container)
|
|
dist/
|