Skip to content

Commit

Permalink
Merge pull request #624 from desci-labs/m0ar/insight-import
Browse files Browse the repository at this point in the history
Insight import tools
  • Loading branch information
m0ar authored Dec 12, 2024
2 parents 2bf647b + 4f08bfe commit c0620d4
Show file tree
Hide file tree
Showing 60 changed files with 5,385 additions and 3,686 deletions.
2 changes: 2 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ NODE_ENV=dev

PORT=5420

# Kubo RPC endpoints
IPFS_NODE_URL=http://host.docker.internal:5001
PUBLIC_IPFS_RESOLVER=http://host.docker.internal:5002

# Kubo path gateway endpoint
IPFS_RESOLVER_OVERRIDE=http://host.docker.internal:8089/ipfs

### Database - Postgres
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ ipfs-data/
local-data/
**/node_modules
.idea
**/*.iml
.composedbRuntimeDefinition.json
openalex-importer
sync-server
sync-server
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
20.8.1
20.18.1
6 changes: 2 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
FROM node:20.8.1-bullseye-slim
FROM node:20.18.1-bullseye-slim

VOLUME /root/.yarn

RUN apt-get -qy update && apt-get -qy install openssl curl

RUN npm install -g npm@9.8.1
RUN apt-get -qy update && apt-get -qy install openssl curl socat jq

RUN mkdir /app
RUN chown -R node:node /app
Expand Down
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ build: .env desci-contracts/.env
$(MAKE) -C desci-contracts build
$(MAKE) -C desci-server install
$(MAKE) -C desci-repo install
$(MAKE) -C nodes-lib build

.PHONY: sterile
sterile: clean-rec
Expand Down
Loading

0 comments on commit c0620d4

Please sign in to comment.