- Added @tailwindcss/typography dependency to package.json and tailwind.config.js. - Updated FolderPicker.vue to include additional properties (isGitRepo, hasDocuments) for directories. - Enhanced Sidebar.vue with folder creation and document handling features, including drag-and-drop functionality. - Implemented createFolder and moveDocument mutations in gql.ts for managing folder and document operations. - Added logic to handle folder creation and document creation prompts in Sidebar.vue. - Updated the layout and interactions in Sidebar.vue to improve user experience.
35 lines
533 B
Plaintext
35 lines
533 B
Plaintext
# Go
|
|
backend/vendor/
|
|
backend/*.exe
|
|
backend/*.test
|
|
backend/archivum
|
|
|
|
# Frontend
|
|
frontend/node_modules/*
|
|
frontend/dist/
|
|
frontend/.env
|
|
frontend/.env.local
|
|
|
|
# Docker local data
|
|
docker/data/
|
|
|
|
# Generated GraphQL code
|
|
backend/internal/graph/generated.go
|
|
backend/internal/graph/models_gen.go
|
|
|
|
# Config (never commit secrets)
|
|
config.json
|
|
settings.json
|
|
*.db
|
|
.env
|
|
# .env.example is intentionally tracked — it contains no secrets
|
|
|
|
# go.sum is intentionally committed once populated by go mod tidy
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE
|
|
.idea/
|
|
*.swp |