Skip to content
Open
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
22 changes: 10 additions & 12 deletions .github/workflows/nftopia-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,15 @@ jobs:
exit 1
fi

# ----------------------------------
# Setup pnpm first (must be before setup-node when using cache: pnpm)
# ----------------------------------
- name: Setup pnpm
if: steps.detect.outputs.manager == 'pnpm'
uses: pnpm/action-setup@v4
with:
version: 10

# ----------------------------------
# Setup Node
# ----------------------------------
Expand All @@ -56,18 +65,7 @@ jobs:
with:
node-version: ${{ env.NODE_VERSION }}
cache: ${{ steps.detect.outputs.manager }}
cache-dependency-path: |
nftopia-backend/pnpm-lock.yaml
nftopia-backend/package-lock.json

# ----------------------------------
# Setup pnpm if needed
# ----------------------------------
- name: Setup pnpm
if: steps.detect.outputs.manager == 'pnpm'
uses: pnpm/action-setup@v3
with:
version: 10
cache-dependency-path: nftopia-backend/pnpm-lock.yaml

# ----------------------------------
# Install Dependencies
Expand Down
4 changes: 4 additions & 0 deletions nftopia-backend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -44,3 +44,7 @@ ARWEAVE_WALLET_PATH=
ARWEAVE_WALLET_JWK=

STORAGE_FALLBACK_ENABLED=true

# MeiliSearch (full-text search)
MEILI_HOST=http://localhost:7700
MEILI_API_KEY=
2 changes: 1 addition & 1 deletion nftopia-backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@
"@nestjs/schedule": "^6.1.1",
"@nestjs/swagger": "^11.2.5",
"@nestjs/typeorm": "^11.0.0",
"@types/cron": "^2.0.1",
"arweave": "^1.15.7",
"cache-manager": "^7.2.8",
"cache-manager-redis-store": "^3.0.1",
Expand All @@ -49,6 +48,7 @@
"rxjs": "^7.8.1",
"stellar-sdk": "^13.3.0",
"swagger-ui-express": "^5.0.1",
"meilisearch": "^0.37.0",
"typeorm": "^0.3.28"
},
"devDependencies": {
Expand Down
Loading