Remove IPFS integration (#11532)

This commit is contained in:
Artem Vorotnikov
2020-08-17 13:47:53 +03:00
parent defd24c40e
commit 32ea4d69a3
28 changed files with 15 additions and 999 deletions

View File

@@ -1,5 +1,5 @@
#!/usr/bin/env sh
# generate documentation only for partiy and ethcore libraries
cargo doc --no-deps --verbose --all --exclude parity-ipfs-api &&
cargo doc --no-deps --verbose --all &&
echo '<meta http-equiv=refresh content=0;url=ethcore/index.html>' > target/doc/index.html

View File

@@ -33,8 +33,8 @@ PARITY_RUNNER_IMAGE_TAG - latest
All default ports you might use will be exposed:
```
# secret
# ipfs store ui rpc ws listener discovery
# ↓ ↓ ↓ ↓ ↓ ↓
EXPOSE 5001 8082 8083 8180 8545 8546 30303/tcp 30303/udp
# secret
# store ui rpc ws listener discovery
# ↓ ↓ ↓ ↓ ↓ ↓
EXPOSE 8082 8083 8180 8545 8546 30303/tcp 30303/udp
```

View File

@@ -10,10 +10,10 @@ WORKDIR /opt/parity/data
# exposing default ports
#
# secret
# ipfs store ui rpc ws listener discovery
# ↓ ↓ ↓ ↓ ↓ ↓
EXPOSE 5001 8082 8083 8180 8545 8546 30303/tcp 30303/udp
# secret
# store ui rpc ws listener discovery
# ↓ ↓ ↓ ↓ ↓ ↓
EXPOSE 8082 8083 8180 8545 8546 30303/tcp 30303/udp
# switch to non-root user
USER 1001

View File

@@ -7,6 +7,6 @@ echo "set -e" >> $FILE
# Run release build
echo "cargo build --features dev" >> $FILE
# Build tests
echo "cargo test --no-run --features dev --all --exclude parity-ipfs-api" >> $FILE
echo "cargo test --no-run --features dev --all" >> $FILE
echo "" >> $FILE
chmod +x $FILE