🛡️ Добавлена полная защита авторских прав: копирайты, лицензия, документация IP, Docker метки
This commit is contained in:
183
.gitignore
vendored
183
.gitignore
vendored
@@ -1,56 +1,161 @@
|
||||
# Зависимости
|
||||
node_modules/
|
||||
/.pnp
|
||||
.pnp.js
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# Логи
|
||||
logs/
|
||||
*.log
|
||||
# dependencies
|
||||
node_modules/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
backend/logs/
|
||||
frontend/logs/
|
||||
|
||||
# Файлы окружения
|
||||
# runtime data
|
||||
pids
|
||||
*.pid
|
||||
*.seed
|
||||
*.pid.lock
|
||||
|
||||
# coverage directory used by tools like istanbul
|
||||
coverage/
|
||||
|
||||
# nyc test coverage
|
||||
.nyc_output
|
||||
|
||||
# Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
|
||||
.grunt
|
||||
|
||||
# Bower dependency directory (https://bower.io/)
|
||||
bower_components
|
||||
|
||||
# node-waf configuration
|
||||
.lock-wscript
|
||||
|
||||
# Compiled binary addons (https://nodejs.org/api/addons.html)
|
||||
build/Release
|
||||
|
||||
# Dependency directories
|
||||
node_modules/
|
||||
jspm_packages/
|
||||
|
||||
# TypeScript v1 declaration files
|
||||
typings/
|
||||
|
||||
# Optional npm cache directory
|
||||
.npm
|
||||
|
||||
# Optional eslint cache
|
||||
.eslintcache
|
||||
|
||||
# Optional REPL history
|
||||
.node_repl_history
|
||||
|
||||
# Output of 'npm pack'
|
||||
*.tgz
|
||||
|
||||
# Yarn Integrity file
|
||||
.yarn-integrity
|
||||
|
||||
# dotenv environment variables file
|
||||
.env
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
backend/.env
|
||||
frontend/.env
|
||||
.env.test
|
||||
.env.production
|
||||
|
||||
# Файлы сборки
|
||||
/dist
|
||||
/build
|
||||
/out
|
||||
# parcel-bundler cache (https://parceljs.org/)
|
||||
.cache
|
||||
.parcel-cache
|
||||
|
||||
# Кэши и временные файлы
|
||||
.cache/
|
||||
.temp/
|
||||
.DS_Store
|
||||
.idea/
|
||||
# next.js build output
|
||||
.next
|
||||
|
||||
# nuxt.js build output
|
||||
.nuxt
|
||||
|
||||
# vuepress build output
|
||||
.vuepress/dist
|
||||
|
||||
# Serverless directories
|
||||
.serverless
|
||||
|
||||
# FuseBox cache
|
||||
.fusebox/
|
||||
|
||||
# DynamoDB Local files
|
||||
.dynamodb/
|
||||
|
||||
# TernJS port file
|
||||
.tern-port
|
||||
|
||||
# Stores VSCode versions used for testing VSCode extensions
|
||||
.vscode-test
|
||||
|
||||
# yarn v2
|
||||
.yarn/cache
|
||||
.yarn/unplugged
|
||||
.yarn/build-state.yml
|
||||
.yarn/install-state.gz
|
||||
.pnp.*
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
|
||||
# Docker тома
|
||||
/data
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Приватные ключи и сертификаты
|
||||
*.pem
|
||||
*.key
|
||||
id_rsa
|
||||
id_rsa.pub
|
||||
# Logs
|
||||
logs/
|
||||
*.log
|
||||
|
||||
# Temporary files
|
||||
temp/
|
||||
tmp/
|
||||
*.tmp
|
||||
|
||||
# Локальные настройки
|
||||
.prettierrc.local
|
||||
.eslintrc.local
|
||||
|
||||
# Файлы базы данных
|
||||
# Database
|
||||
*.db
|
||||
*.sqlite
|
||||
*.sqlite3
|
||||
docker-compose.local.yml
|
||||
|
||||
# Keys and certificates
|
||||
*.key
|
||||
*.pem
|
||||
*.crt
|
||||
*.p12
|
||||
|
||||
# SSH Keys - КРИТИЧЕСКИ ВАЖНО!
|
||||
id_rsa
|
||||
id_ed25519
|
||||
*.ppk
|
||||
ssh_host_*
|
||||
ssh_config
|
||||
|
||||
# Docker
|
||||
.dockerignore
|
||||
|
||||
# ========================================
|
||||
# ПАТЕНТНЫЕ ДОКУМЕНТЫ - НЕ ПУБЛИКОВАТЬ!
|
||||
# ========================================
|
||||
|
||||
# Патентные заявки и документы
|
||||
legal/patents/
|
||||
legal/PATENT_*.md
|
||||
legal/INNOVATION_PROCESS.md
|
||||
legal/TECHNICAL_SPECIFICATIONS.md
|
||||
legal/PATENT_DRAWINGS*.md
|
||||
|
||||
# Конфиденциальные технические детали
|
||||
legal/REGISTRATION_PLAN.md
|
||||
legal/JURISDICTION.md
|
||||
|
||||
# Временные файлы патентной работы
|
||||
legal/temp/
|
||||
legal/drafts/
|
||||
legal/confidential/
|
||||
|
||||
# ========================================
|
||||
# АВТОРСКИЕ ПРАВА И ЛИЦЕНЗИИ - ПУБЛИКОВАТЬ
|
||||
# ========================================
|
||||
# legal/LICENSE.md - ПУБЛИКОВАТЬ
|
||||
# legal/AUTHORS.md - ПУБЛИКОВАТЬ
|
||||
# legal/CONTRIBUTING.md - ПУБЛИКОВАТЬ
|
||||
# legal/COPYRIGHT_NOTICE.md - ПУБЛИКОВАТЬ
|
||||
# legal/TERMS_OF_SERVICE.md - ПУБЛИКОВАТЬ
|
||||
Reference in New Issue
Block a user