This commit is contained in:
qo-op 2020-03-29 04:58:10 +01:00
commit 2d61f1a89a
4 changed files with 29 additions and 4 deletions

View File

@ -75,7 +75,13 @@ scuttlebutt() {
"incoming": { "incoming": {
"net": [ "net": [
{ "scope": "public", "host": "0.0.0.0", "external": ["$nodename"], "transform": "shs", "port": 8008 } { "scope": "public", "host": "0.0.0.0", "external": ["$nodename"], "transform": "shs", "port": 8008 }
] ],
"ws": [{
"scope": ["public", "local", "device"],
"port": 8989,
"transform": "shs",
"http": true
}]
}, },
"outgoing": { "outgoing": {
"net": [{ "transform": "shs" }] "net": [{ "transform": "shs" }]
@ -111,7 +117,13 @@ ssb-server start &
"scope": "public", "external": ["$nodename"], "transform": "shs", "port": 8008 "scope": "public", "external": ["$nodename"], "transform": "shs", "port": 8008
}, },
{ "scope": "private", "host": "127.0.0.1", "transform": "shs", "port": 8008 } { "scope": "private", "host": "127.0.0.1", "transform": "shs", "port": 8008 }
] ],
"ws": [{
"scope": ["public", "local", "device"],
"port": 8989,
"transform": "shs",
"http": true
}]
}, },
"outgoing": { "outgoing": {
"net": [ "net": [

View File

@ -36,3 +36,17 @@ curl -s https://git.p2p.legal/axiom-team/astroport/raw/master/git-install.sh | b
``` ```
**WARNING: This is an early stage develepment, use it with great care!** **WARNING: This is an early stage develepment, use it with great care!**
MAIN ENTRANCE BUILD UP
[![](https://pad.p2p.legal/uploads/upload_ac0f943cd66fe8a20925151063a7e78a.jpg)](https://astroport.frama.site/)
![](https://pad.p2p.legal/uploads/upload_bfcde4526535bce2cfb12c2e0497587d.png)
[QWANTIC](https://qwantic.com)
```
_ ______ _
/ \\ //\ |\ || | /
\_X \/\//--\| \|| _|_\_ #Web4D
```

Binary file not shown.

After

Width:  |  Height:  |  Size: 87 KiB

View File

@ -79,8 +79,7 @@ sbotc messagesByType "post"
messages=$(sbotc messagesByType '{"type":"post"}') messages=$(sbotc messagesByType '{"type":"post"}')
while read -r msg while read -r msg
do do
author=$(printf %s "$msg" | jq -r .value.author) author=$(printf %s "$msg" | jq -r .value.author)
attached_file=$(printf %s "$msg" | jq -r .value.content.mentions[].name 2>/dev/null) attached_file=$(printf %s "$msg" | jq -r .value.content.mentions[].name 2>/dev/null)