mirror of
https://github.com/Memo-2023/mana-monorepo.git
synced 2026-05-14 18:21:09 +02:00
make auth working
This commit is contained in:
parent
7a1f1e9aef
commit
25824ed0ac
73 changed files with 9093 additions and 3877 deletions
37
.dockerignore
Normal file
37
.dockerignore
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
# TypeScript build cache - must be excluded to prevent incremental build issues
|
||||
**/*.tsbuildinfo
|
||||
|
||||
# Dependencies
|
||||
**/node_modules
|
||||
**/.pnpm-store
|
||||
|
||||
# Build outputs are excluded to force fresh builds
|
||||
**/dist
|
||||
|
||||
# Development files
|
||||
**/.env
|
||||
**/.env.local
|
||||
**/.env.*.local
|
||||
|
||||
# IDE
|
||||
**/.idea
|
||||
**/.vscode
|
||||
**/*.swp
|
||||
**/*.swo
|
||||
|
||||
# OS files
|
||||
**/.DS_Store
|
||||
**/Thumbs.db
|
||||
|
||||
# Logs
|
||||
**/*.log
|
||||
**/npm-debug.log*
|
||||
**/pnpm-debug.log*
|
||||
|
||||
# Test files
|
||||
**/coverage
|
||||
**/.nyc_output
|
||||
|
||||
# Git
|
||||
.git
|
||||
.gitignore
|
||||
Loading…
Add table
Add a link
Reference in a new issue