initiate drf app
This commit is contained in:
92
.gitignore
vendored
Normal file
92
.gitignore
vendored
Normal file
@@ -0,0 +1,92 @@
|
||||
# Node modules
|
||||
node_modules/
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
.env*.local
|
||||
.env.production
|
||||
*.env
|
||||
.env.*
|
||||
|
||||
# Debugging and logs
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Next.js build output
|
||||
.next/
|
||||
out/
|
||||
|
||||
# Production build
|
||||
/build
|
||||
|
||||
# Coverage reports
|
||||
coverage/
|
||||
|
||||
# Dependency management
|
||||
.pnp/
|
||||
.pnp.js
|
||||
yarn.lock
|
||||
|
||||
# Local configuration
|
||||
.vscode/
|
||||
.vercel/
|
||||
.idea/
|
||||
*.sublime-project
|
||||
*.sublime-workspace
|
||||
|
||||
# TypeScript build info
|
||||
*.tsbuildinfo
|
||||
next-env.d.ts
|
||||
|
||||
# Misc
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
*.pem
|
||||
|
||||
# Byte-compiled Python files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
|
||||
# Виртуальные окружения
|
||||
venv/
|
||||
env/
|
||||
ENV/
|
||||
.venv
|
||||
bin/
|
||||
local/
|
||||
.include/
|
||||
*.egg
|
||||
*.egg-info/
|
||||
.eggs/
|
||||
|
||||
# Секретные ключи и конфигурации
|
||||
*.env
|
||||
|
||||
# Системные файлы
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Базы данных SQLite
|
||||
db.sqlite3
|
||||
database
|
||||
|
||||
# Static and media files
|
||||
staticfiles/
|
||||
media/
|
||||
|
||||
# Миграции
|
||||
*/migrations/*.pyc
|
||||
*/migrations/*.py~
|
||||
|
||||
# Компиляция файлов
|
||||
*.mo
|
||||
*.pot
|
||||
|
||||
# Docker файлы
|
||||
*.pid
|
||||
*.dockerignore
|
||||
docker-compose.override.yml
|
||||
|
||||
.DS_Store
|
||||
Reference in New Issue
Block a user