Skip to content

Commit 5f0cb23

Browse files
committed
Init project
1 parent 9ac3281 commit 5f0cb23

18 files changed

+4012
-0
lines changed

.env.example

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
LOG_LEVEL=info
2+
ORACLE_CONTRACT_ADDRESS=
3+
SLA_ALLOCATOR_CONTRACT_ADDRESS=
4+
WALLET_PRIVATE_KEY=
5+
FILECOIN_RPC_URL=
6+
CHAIN=
7+
TRIGGER_INTERVAL_HOURS=
8+
CDP_SERVICE_URL=

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules
2+
.env
3+
dist
4+
5+
src/**/*.js

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
FROM node:24-alpine
2+
WORKDIR /app
3+
COPY package*.json ./
4+
RUN npm ci --production
5+
COPY . .
6+
CMD ["node", "index.js"]

0 commit comments

Comments
 (0)