Initial commit: FunConnect project with server, relay, client and admin panel
Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
63
.gitignore
vendored
63
.gitignore
vendored
@@ -1,6 +1,61 @@
|
||||
node_modules/
|
||||
dist/
|
||||
# Rust
|
||||
/target/
|
||||
Cargo.lock
|
||||
|
||||
# Environment variables
|
||||
.env
|
||||
logs/
|
||||
*.log
|
||||
.env.local
|
||||
.env.*.local
|
||||
|
||||
# IDE
|
||||
.idea/
|
||||
.vscode/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
|
||||
# Client build artifacts
|
||||
client/ui/dist/
|
||||
client/ui/node_modules/
|
||||
|
||||
# Tauri
|
||||
client/gen/
|
||||
client/target/
|
||||
|
||||
# Database
|
||||
*.db
|
||||
*.db-journal
|
||||
*.sqlite
|
||||
|
||||
# Certificates (generated at runtime)
|
||||
*.pem
|
||||
*.crt
|
||||
*.key
|
||||
|
||||
# Test files
|
||||
*.test.*
|
||||
coverage/
|
||||
|
||||
# NPM
|
||||
node_modules/
|
||||
package-lock.json
|
||||
pnpm-lock.yaml
|
||||
yarn.lock
|
||||
|
||||
# Build outputs
|
||||
dist/
|
||||
build/
|
||||
*.exe
|
||||
*.dmg
|
||||
*.AppImage
|
||||
*.deb
|
||||
*.rpm
|
||||
*.msi
|
||||
|
||||
Reference in New Issue
Block a user