feature/ci (#84)
Co-authored-by: openhands <openhands@all-hands.dev> Reviewed-on: https://codeberg.org/johba/harb/pulls/84
This commit is contained in:
parent
beefe22f90
commit
4277f19b68
41 changed files with 3149 additions and 298 deletions
104
.dockerignore
104
.dockerignore
|
|
@ -1,60 +1,76 @@
|
|||
# Node.js dependencies (should be in named volumes, not copied to build context)
|
||||
**/node_modules/
|
||||
node_modules/
|
||||
|
||||
# Build outputs
|
||||
**/dist/
|
||||
**/build/
|
||||
**/.next/
|
||||
**/.nuxt/
|
||||
|
||||
# Caches
|
||||
**/.cache/
|
||||
**/.vite/
|
||||
**/.ponder/
|
||||
**/.turbo/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
|
||||
# Environment files (should be generated in containers)
|
||||
**/.env.local
|
||||
**/.env.*.local
|
||||
|
||||
# Testing
|
||||
**/coverage/
|
||||
**/.nyc_output/
|
||||
# Exclude large directories and unnecessary files from Docker build context
|
||||
|
||||
# Git
|
||||
.git/
|
||||
.gitignore
|
||||
.gitattributes
|
||||
.github/
|
||||
|
||||
# IDE
|
||||
# CI
|
||||
.woodpecker/
|
||||
|
||||
# Dependencies (will be installed during build)
|
||||
node_modules/
|
||||
**/node_modules/
|
||||
.pnpm-store/
|
||||
.npm/
|
||||
.yarn/
|
||||
|
||||
# Build outputs
|
||||
dist/
|
||||
build/
|
||||
out/
|
||||
.next/
|
||||
.nuxt/
|
||||
.cache/
|
||||
|
||||
# Development
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
# Logs
|
||||
*.log
|
||||
logs/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Docker
|
||||
Dockerfile
|
||||
docker-compose*.yml
|
||||
.dockerignore
|
||||
|
||||
# Documentation
|
||||
*.md
|
||||
!README.md
|
||||
# Test artifacts
|
||||
test-results/
|
||||
playwright-report/
|
||||
coverage/
|
||||
|
||||
# Temporary files
|
||||
tmp/
|
||||
temp/
|
||||
*.tmp
|
||||
|
||||
# OS files
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Ponder
|
||||
.ponder/
|
||||
services/ponder/.ponder/
|
||||
|
||||
# Docker
|
||||
docker-compose.override.yml
|
||||
|
||||
# Environment files
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
# Foundry artifacts (most will be built during bootstrap)
|
||||
# But keep ABI JSON files needed by kraiken-lib
|
||||
onchain/out/
|
||||
!onchain/out/Kraiken.sol/
|
||||
!onchain/out/Kraiken.sol/Kraiken.json
|
||||
!onchain/out/Stake.sol/
|
||||
!onchain/out/Stake.sol/Stake.json
|
||||
onchain/cache/
|
||||
onchain/broadcast/
|
||||
|
||||
# Artifacts
|
||||
artifacts/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue