Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/backend-ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ jobs:
with:
node-version: "20"
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
cache-dependency-path: "backend/pnpm-lock.yaml"

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: cd backend && pnpm install --frozen-lockfile

- name: Run unit tests
run: cd backend && pnpm run test
Expand Down Expand Up @@ -79,10 +79,10 @@ jobs:
with:
node-version: "20"
cache: "pnpm"
cache-dependency-path: "**/pnpm-lock.yaml"
cache-dependency-path: "backend/pnpm-lock.yaml"

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: cd backend && pnpm install --frozen-lockfile

- name: Build
run: cd backend && pnpm run build
Expand Down
95 changes: 11 additions & 84 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,94 +1,21 @@
# Dependencies
node_modules/
**/node_modules/
.pnp
.pnp.js

# Build outputs
dist/
build/
**/dist/
**/build/
.next/
out/

# Rust's output directory
target/
**/target/

# Testing
coverage/
.nyc_output/
*.log
test_snapshots/
**/test_snapshots/

# Environment files
.env
.env.local
.env.*.local
*.env

# IDEs and editors
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
target

# Soroban/Stellar
.soroban/
.stellar/
/node_modules

# Database
*.db
*.sqlite
*.sqlite3
# Local settings
.soroban
.stellar

# Prisma
generated/prisma/
# Test outputs
contracts/test_snapshots/
PR_DESCRIPTION.md
PR_DESCRIPTION_ISSUE75.md
PR_DESCRIPTION_ISSUE74.md
/generated/prisma

# Temporary files
*.tmp
*.temp
.cache/
.temp/

# OS files
Thumbs.db
.DS_Store

# Logs
logs/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

# Agent files
.agent/
.agents/
issue.md

# Documentation drafts
PR_DESCRIPTION.md
PR_DESCRIPTION_ISSUE75.md
PR_DESCRIPTION_ISSUE74.md

# Package manager locks (keep pnpm-lock.yaml)
# Uncomment if you want to ignore lock files
# package-lock.json
# yarn.lock

# WASM build artifacts
*.wasm
!contracts/target/wasm32-unknown-unknown/release/*.wasm

# Backup files
*.bak
*.backup
*~
/contracts/test_snapshots
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"kiroAgent.configureMCP": "Disabled"
}
}
Loading
Loading