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
36 changes: 36 additions & 0 deletions .env.default
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
API_VERSION=v1
AWS_BUCKET_NAME=
AWS_ACCESS_KEY=
AWS_ACCESS_SECRET=
AWS_BUCKET_NAME=
AWS_MAX_FILE_SIZE=26214400
AWS_STORAGE_URL=
BUILDER_SERVER_URL=https://builder-api.decentraland.org
BUILDER_SHARE_URL=https://share.decentraland.org
BUILDER_URL=https://builder.decentraland.org
CHAIN_NAME=Ethereum Mainnet
COLLECTIONS_GRAPH_URL=https://subgraph.decentraland.org/collections-matic-mainnet
CONNECTION_STRING='postgres://localhost:5432/builder'
DEFAULT_ASSET_PACK_CACHE=86400000
DEFAULT_ETH_ADDRESS=
DEFAULT_USER_ID=
EXPLORER_URL=https://play.decentraland.org
FORUM_API_KEY=
FORUM_API_USERNAME=
FORUM_CATEGORY=
FORUM_URL=https://forum.decentraland.org
GRAPH_QUERY_TIMEOUT=10000
IPFS_URL=https://ipfs.infura.io:5001
IPFS_PROJECT_ID=
IPFS_API_KEY=
OPEN_SEA_URL=https://api.opensea.io/api/v2
PEER_URL=https://peer.decentraland.org
RPC_URL=https://rpc.decentraland.org/polygon
SERVER_PORT=5000
THIRD_PARTY_GRAPH_URL=https://subgraph.decentraland.org/tpr-matic-mainnet
CORS_ORIGIN='http://localhost:5173'
CORS_METHOD=*
WAREHOUSE_CONTEXT_PREFIX=
WAREHOUSE_URL=
WAREHOUSE_TOKEN=
WKC_METRICS_BEARER_TOKEN=
21 changes: 21 additions & 0 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: build-app-docs

on:
push:
branches: [main]
paths:
- 'docs/**'
pull_request:
paths:
- 'docs/**'

jobs:
build:
permissions:
contents: read
uses: decentraland/platform-actions/.github/workflows/apps-docs.yml@main
with:
api-spec-file: 'docs/openapi.yaml'
api-spec-name: 'builder-server-api'
node-version: '24'
secrets: inherit
4 changes: 2 additions & 2 deletions .github/workflows/node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Use Node.js 22.x
- name: Use Node.js 24.x
uses: actions/setup-node@v4.0.1
with:
node-version: '22.x'
node-version: '24.x'
- name: Install
run: npm ci
- name: Test
Expand Down
7 changes: 3 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
ARG RUN

FROM node:18.17.1-alpine as builder
FROM node:24.12.0-alpine as builder

WORKDIR /app

# The catalyst client lib is using a dependency installed by using git
RUN apk update
RUN apk add git
RUN apk add --no-cache git python3 build-base

COPY package.json /app/package.json
COPY package-lock.json /app/package-lock.json
Expand All @@ -18,7 +17,7 @@ COPY . /app

RUN npm run build

FROM node:18.17.1-alpine
FROM node:24.12.0-alpine

WORKDIR /app

Expand Down
Loading
Loading