Skip to content

Commit

Permalink
small updates and fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pluja committed Sep 2, 2023
1 parent deff1a7 commit 80caa22
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ wget https://raw.githubusercontent.com/pluja/nerostr/master/docker-compose.yml
3. Get the `.env` file from this repo and modify all the variables to your needs. Mainly you will have to edit the `MONERO_WALLET_FILENAME` and `MONERO_WALLET_PASSWORD` variables.

```bash
wget -o .env https://raw.githubusercontent.com/pluja/nerostr/master/example.env
curl -fsSL -o .env https://raw.githubusercontent.com/pluja/nerostr/main/example.env
```

4. (optional) Get the config file for your the `strfry` relay:
4. Get the config file for your the `strfry` relay:

```bash
wget -o strfry.conf https://raw.githubusercontent.com/pluja/nerostr/master/strfry/strfry.conf
wget https://raw.githubusercontent.com/pluja/nerostr/master/strfry/strfry.conf
```

> **Warning**
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ services:
image: sethsimmons/simple-monero-wallet-rpc:latest
command: [
"--wallet-file",
"/home/monero/${MONERO_WALLET_FILENAME}",
"${MONERO_WALLET_FILENAME}",
"--password",
"${MONERO_WALLET_PASSWORD}",
"--rpc-bind-port",
Expand All @@ -33,7 +33,7 @@ services:
"1000000"
]
volumes:
- ./nerostr_data/wallet/:/home/monero/
- ./nerostr_data/wallet/:/home/monero/wallet/
restart: unless-stopped
ports:
- 28081:28081
Expand Down
10 changes: 5 additions & 5 deletions nerostr/html/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
</form>
</div>

<div class="flex flex-col items-center justify-center">
<!--<div class="flex flex-col items-center justify-center">
<div class="max-w-md space-y-3">
<div class="px-4 py-2 text-center bg-gray-200 rounded-lg">
<p class="text-lg text-gray-600">total users</p>
<p class="text-3xl text-gray-700">19</p>
</div>
</div>
</div>
</div>-->


<div class="flex flex-col items-center justify-center pt-12">
Expand All @@ -29,18 +29,18 @@ <h2 class="my-4 text-2xl text-gray-700">quick info</h2>

<div class="w-full p-4 bg-gray-200 rounded-lg">
<h3>what is nostr?</h3>
<p>nostr is a...</p>
<p>a lightweight, simple yet extensible open protocol that allows building truly censorship resistant and decentralized social media platforms. <a class="underline" href="https://usenostr.org">learn more here</a>.</p>
</div>

<div class="w-full p-4 bg-gray-200 rounded-lg">
<h3>why pay to relay?</h3>
<p>because this way is a...</p>
<p>the obvious benefit of paid relays is avoiding spam. since there is a cost involved in publishing to these relays, you won't be subject to spammers and bots that tend to bombard any social media network, thus getting much better global feeds. </p>
</div>

<div class="w-full p-4 bg-gray-200 rounded-lg">
<h3>nerostr?</h3>
<p>
nerostr is an open source project by <a href="https://github.com/pluja">pluja</a>
nerostr is an open source project by <a class="underline" href="https://github.com/pluja/nerostr">pluja</a>. it uses golang as the backend, and <a class="underline" href="https://github.com/hoytech/strfry">strfry</a> as the relay.
</p>
</div>

Expand Down

0 comments on commit 80caa22

Please sign in to comment.