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
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
name: "Main"
on:
pull_request:
workflow_dispatch:
push:
branches:
- "master"
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
# DAppNodeSDK release directories
build_*
releases.json
8 changes: 3 additions & 5 deletions GETTING_STARTED.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
This package contains a NEAR Network Node and a Local NEAR Wallet.
# This package contains a NEAR Network Node

**Wallet URL**: [wallet.near.dappnode](http://wallet.near.dappnode)

**Node URL**: [near.dappnode](http://near.dappnode:3030)
**Node RPC Endpoint URL**: [near.dappnode](http://near.dappnode:3030)

⚠️**Important**⚠️
You will have to wait for your node to fully synchronize before you can connect the wallet to your node.
You will have to wait for your node to fully synchronize before you can connect your web3 wallet to your node.

It includes a Grafana dashboard for [DMS](http://dms.dappnode/d/nearuid/near-overview?orgId=1&refresh=10s&from=now-3h&to=now)

Expand Down
15 changes: 1 addition & 14 deletions dappnode_package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
"architectures": ["linux/amd64"],
"links": {
"homepage": "https://near.org",
"api": "http://near.dappnode:3030",
"Wallet": "http://wallet.near.dappnode"
"api": "http://near.dappnode:3030"
},
"repository": {
"type": "git",
Expand All @@ -27,17 +26,5 @@
"bugs": {
"url": "https://github.com/dappnode/DAppNodePackage-NEAR/issues"
},
"backup": [
{
"name": "config",
"path": "/srv/near/config.json",
"service": "near"
},
{
"name": "validator_key",
"path": "/srv/near/validator_key.json",
"service": "near"
}
],
"license": "GPL-3.0"
}
9 changes: 1 addition & 8 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ services:
near:
image: near.near.dnp.dappnode.eth:0.1.0
build:
context: neard_image
context: near
args:
UPSTREAM_VERSION: 2.3.1
volumes:
Expand All @@ -12,12 +12,5 @@ services:
ports:
- 24567:24567/tcp
- 24567:24567/udp
wallet:
image: wallet.near.dnp.dappnode.eth:0.1.0
build:
context: wallet
args:
NODE_URL: http://near.dappnode:3030
restart: unless-stopped
volumes:
near: {}
11 changes: 11 additions & 0 deletions near/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
ARG UPSTREAM_VERSION

FROM nearprotocol/nearcore:${UPSTREAM_VERSION}

RUN apt-get update && DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true apt-get install -y nginx supervisor wget awscli

COPY entrypoint.sh /usr/local/bin/

EXPOSE 3030 25467

ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
File renamed without changes.
27 changes: 0 additions & 27 deletions neard_image/Dockerfile

This file was deleted.

67 changes: 0 additions & 67 deletions neard_image/nginx.conf

This file was deleted.

25 changes: 0 additions & 25 deletions neard_image/staking-api/app.js

This file was deleted.

Loading