create account

How To Set Up Your Own Hive Break Away Front End by thelogicaldude

View this thread on: hive.blogpeakd.comecency.com
· @thelogicaldude · (edited)
$258.98
How To Set Up Your Own Hive Break Away Front End
![thelogicaldude.jpeg](https://files.peakd.com/file/peakd-hive/thelogicaldude/23vhwaPPQPXZxQ5TPaVECrqFkxmcNnRBHVsiHFxoTm4LrDgdvBNR4J8LEF6tSQD465H3u.jpeg)

You can now set up your own Hive front end using the new Break Away  communities from the team at the @spknetwork. These communities utilize the @ecency framework with your own Hive community to easily create your own Hive front end, all it takes is a domain, cheap web server with some setup, and of course, a Hive community! 

In this post I am going to go over the steps I took, from scratch to create the [BlockTunes Social](https://blocktunes.social) community front end for the @blocktunes music project!

You can also check out the [original guide](https://3speak.tv/watch?v=psorigins/ewuhhqmt) from @psorigins, but this goes into a bit more detail. 


## Step 1 - Start A Hive Community

This part is simple and only costs 3 $HIVE to create a community. For this example, I will be using [Peakd.com](https://peakd.com/communities) to create the community.

On the [communities](https://peakd.com/communities) page on Peakd, you will see a list of communities on Hive as well as the button to create a new community. Creating a community is similar to creating a Hive account.


![Screen Shot 2022-07-05 at 11.34.12 AM.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23swib6kJVLFPMDtTtTLFMuTrovhzM5C9mVfhwf49kShtEvZY8qmnw2LJUNYrx7L3XbSJ.png)

Once you click the plus button, you will see the following page, this is where you will chose the name of your community and you will see the private keys for that community. You will need to make sure to download the private keys in the given text file, and then secure them in a safe location. 

Once you have the community created, it may take a minute or so for peakd to get everything set up in the background. 

Once it is ready you will be able to make setting changes to your community, add images, description, rules, etc, just like a regular Hive account.


![Screen Shot 2022-07-05 at 11.40.50 AM.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23tGXhX1zzmUqbdoMGSBgVSzrXF3KB2zC8ngF2HrNu6KsWJe5qRjep1B9HjKwKXC2VoJH.png)


So now that you have your community created, you will need the 'hive-12345' number that came with your community. This is what you will need when you go through the front end setup. In the case of BlockTunes.Social, the hive community number is hive-176363. 

![Screen Shot 2022-07-05 at 11.43.02 AM.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23tvAj2Cqu3kWsnSrsN9kvyU9RbvQBfFpPNWHV9aaEBdf23GjZdZQZykuD9VRWvxJyZWs.png)

You are finished on this side for now. Keep that community number handy for later. 

## Step 2- Get a VPS or Server Setup with IPv4

You can use a variety of different hosts to accomplish this task. You will need to get a server setup that will allow you to log in using an IP address. 

Privex.io is what was used in the original video, but their lower priced webbox that was used in the guide is out of stock, so I am using another VPS host, Linode.com to set up. They have a $5 per month server that is perfect for this operation. 

The original guide was created using Debian OS for Linux, so I stuck with that. 


![Screen Shot 2022-07-05 at 11.51.46 AM.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23sxmuXPzDGtLuJ11qWm1xNsAeDQJPXFQmVVG4jUonhmEh1FQTwWZVKPmgkCbRrYxyQvg.png)

Once you order your server, you will then get the credentials needed to sign into your terminal using SSH. Linode makes it easy to access this information where you can just copy and paste it into your terminal. 


![Screen Shot 2022-07-05 at 11.54.32 AM.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23twAKVLFquTSh1UptfvJPZcoAHDh3oV3Vqtqf9uJYrFrSZb7MLrCr4JRNt2DsvCoKx4k.png)

You will set the name of the server and password when you are ordering it. Now that is all done, you will move along to the next step...

## Step 3- Buy A Domain

Next step is to purchase a domain for your community. You can do this on services like GoDaddy.com or Namecheap.com, which is what I am using these days to buy my domains. 

Once you find the perfect domain and purchase it, you will then need to go in and set your DNS settings to point your domain to your new server you just created. I found it easier to get this all set up first before starting the front end setup.

Using Namecheap, but it's pretty similar across all domain registration companies, you will need to go to your DNS settings. In Namecheap, you will then need to go to the Advanced DNS to add a record. Most registrars just give you the option to change the nameservers in the base settings, so that is why you may need to look for advance settings. 


![Screen Shot 2022-07-05 at 12.00.00 PM.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23tcLZ1i3G3xUkDZB6aJvtPsdoaUBRMatHDP92VRyay4Dh5jYZBA7BK61b3ThLXFnjNEq.png)

When you get started, you will not have any records. What you see is in this image is what you need to set up. I have hidden the active IP address for security.

You will Add New Record, then set up 2 A records. One using the '@' symbol as the host, with the IP address of your server as the Value. This is your root file

The second A record needs to be www as the host and then your server's IP address as the value. This is the www subdomain. You can set it up using a subdomain of an already existing domain as well.

Once that is set up, you are done there and the next step is to get into the terminal and get our hands dirty there.

## Step 4 - Setting Up The Server

Before you can get the front end setup, you will need to first install some dependencies on your server for it to operate properly.

Again,in the [original guide](https://3speak.tv/watch?v=psorigins/ewuhhqmt) they used Privex Web Box which has allot of this already setup, but since we are starting from scratch, you will need to walk through these steps.

### Open Your Terminal And Sign In To Server

You will need to locate the terminal program on your computer. I am on a Mac so I will just search for the Terminal program, it should be the same on Windows as well. 

Once you have your Terminal open, you will go to your server and copy the ssh address and paste it into your terminal to sign in. 


![Screen Shot 2022-07-05 at 11.54.32 AM.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23twAKVLFrAhrfQBvtgL8tEZt2QHcmuMEz5TqDSNxTyWYPno6b6vKWupBNTC81dZt6Zb5.png)

You can also just enter:
ssh root@YOURIPADDRESS then hit enter

You may be prompted to save the IP address into your system as it is the first time you have accessed it. Hit Y and continue. 

Then you will enter the server password you set when you set up the server. 

Once you are into your server, then you can proceed with installing the dependencies. 

You can check to see if you server package came with some of these dependencies by checking the versions. 

```
git --version
docker --version
docker-composer --version

```

These would be the main ones to look for by default. If they are not on your server, then continue with the following steps. 

### Install Git

First step is to install Git by entering the following commands:

First you want to make sure your system is up to date. 

```
sudo apt update
```

Then once that process is finished, you will install Git:
```
sudo apt install git
```

You will be prompted to continue and verify the space usage.

Once that process is complete, you can verify Git installed by checking the version:

```
git --version
```

If you see an output with a version, you know you did it correctly. 

### Install Docker

This process got a little involved. I used [this guide](https://www.howtoforge.com/how-to-install-docker-on-debian-11/) to help me along the way. I am also listing the steps below with images from the guide...

First start with the following command to install some dependencies that Docker needs to run:

```
apt install \
    apt-transport-https \
    ca-certificates \
    curl \
    gnupg \
    lsb-release
```

You will need to enter Y when prompted...



![1-install-packages-dependenciess.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/48GC4cQjCiAjQYZ5EfSfxBEbzqGLTnz9pD7hpzSHN5cKVRGvQzwKqr22ubbX2AeNky.png)

Next you will execute the following command to add the GPG key for Docker:

```
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
```

After that, add the Docker repository for Debian 11 system using the command below.

```
echo \
 "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/debian \
 $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
```
Now run the 'apt update' command to update/refresh all available repositories.

```
apt update
```
Now you're ready to install Docker to Debian 11...

Being that we have never installed Docker before, we do not need to remove old versions so to install Docker for the first time, enter the command:

```
apt install docker-ce docker-ce-cli containerd.io
```
Type 'y' and press 'Enter' to confirm the installation.


![3-installing-docker-debian-bullseye.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23t72QrdXxLqR8m3gyfcoY8SMMX8pj3HGerLETUBi2E11q6WHvXX7K4JX7mcDo7nAJ3YH.png)

If the installation is complete, execute the following command to verify the installation...

- Check whether the service is enabled or not.

```
systemctl is-enabled docker
systemctl is-enabled containerd
```
Check Docker and Containerd service status.

```
systemctl status docker containerd
```

Below is the output you will get, well at least similar...


![4-checking-docker-service.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23t74jUAy2z5vbSBUJqtQsjWhJnAH1TnjjJF4kiGXfpTqhtcoDRAJXHoXGEo4nB4oMoEQ.png)

As seen, the Docker and Containerd services are active (running), and both services are enabled and will run automatically at system startup.

### Install Docker Composer

Now that you have Docker installed, you will need to install the Docker Composer dependency. You can easily do this by entering the following command in your terminal:

```
curl -SL https://github.com/docker/compose/releases/download/v2.5.0/docker-compose-linux-x86_64 -o /usr/local/bin/docker-compose && sudo chmod +x /usr/local/bin/docker-compose
```
You will need to click Y when prompted to verify storage usage.

You can verify if it is installed by running the verify command

```
docker-composer --verify
```
You will get an output with a version if done correctly.

### Install Nginx

Nginx is a popular web server that can be used as a reverse proxy and load balancer for your servers. It can also work as a standalone server or in conjunction with another application server. In order to make use of its functionality, we need to first install it. You need this to install the front end files from SPK Network.

Simply run the following command to install Nginx:

```
sudo apt install nginx -y
```
The process will look something like this:


![install_nginx.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23tRrM4jtn7w2bhBeCdqwyy5JrrR2KcvMM4eT85BT8xvz9MQKXbpFVCf3LN8DB9Fw97ux.png)


![install_nginx_2.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23tGRcZZpaAgxa5NFqu1wcewgqGwJ3shFHfwTy9cMkMzo6crHW5FPsBfHgJyzM5rSycaH.png)

Once complete you can verify the installation by running the following command:

```
sudo systemctl status nginx
```

### Install Certbot

Certbot allows you to set up a secure connection for your domain. This sets up the secure https for your domain.

First you have to install a dependency to allow you to install Certbot, called Snapd and Snapd core. To do this, enter the following commands:

First:

```
sudo apt install snapd
```

Then:

```
sudo snap install core
```

Once Snapd is installed, then install Certbot:

```
sudo snap install certbot --classic
```
And that part is complete. 

### Install Node.JS

The last step to the server setup process is installing Node.js. This runs the CLI for the Hive front end.

Install Node.JS and NPM by using the command below:

```
sudo apt install nodejs npm 
```
You may be prompted to his Y for space usage, but other than that, that's it. Setup is complete. Now it's time for the fun stuff! 

## Step 5- Setting Up Your Hive Front End

This is really the easiest part of the process. First you will need to enter the admin portion by entering the following command:

```
sudo -i
```
In my case I didn't really see anything happen just gave me another space for another command.

That is when I took the next step of downloading the script to create the community. This happens by entering the following command, This is where you needed Nginx:

```
npx @spknetwork/community-create
```
Once you run this, you will then be prompted to enter your Hive community ID. This was that number that I told you to remember, in the case of BlockTunes Social, it is hive-176363. You enter the number then click 'Enter'.

In the next step you are asked to enter tags to be displayed in your community. You enter them with a comma in between (NO Spaces). For example: blocktunes,music,beatzchain 

The next step is when you enter your domain names. You will enter both the base domain and or subdomain. For example, with a base domain, you would use both domain and www:

blocktunes.social,www.blocktunes.social 

Then you hit 'Enter'. It goes through some processing steps and creates some files for you. Once you have done this, then you are pretty much done, except for the last step...

## Step 6- Set Up Secure Domain With Certbot

This is the last part of the setup, setting up HTTPS. To do this enter the following command, and replacing the example.com with your own domain.

```
sudo certbot --nginx -d example.com -d www.example.com
```
In our case it was

sudo certbot --nginx -d blocktunes.social -d www.blocktunes.social

Hit 'Enter' and you will then get a notice that should say your domain is secured with HTTPS! 

If you see that, then you are DONE!

You now just need to go visit your newly set up domain and see your Hive break away community in all it's glory!!! If you already have a Hive community setup with content, you will then see the contents of that existing community as well as the description, rules, and images you set up earlier!

## Congratulations!

You now have your own Hive front end for the grand total of the cost of the domain and the $5 a month for the Linode server, or whatever server you want to use, as long as it is IPv4 enabled!

Thanks to the @spknetwork for making this happen!


![Screen Shot 2022-07-05 at 1.05.16 PM.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23tRxswugxozUxcLxaSUWCnAmK7kVeydKxUJNdZ2f7tH5wj5c7GRq67QHFtDvC6nFGqBM.png)


Be Cool, Be Real, and always Abide!

### Support The Logical DAO

If you want to support the efforts of The Logical Dude and his projects that come out of The Logical Labs, you can support by purchasing a special NFT directly from the site using pHBD on Polygon! These funds are used to fuel the income engine in The Logical DAO

https://thelogicaldude.com/nfts
https://thelogicaldude.com/dao 

### The Logical Labs Projects
https://hivelist.io - Classifieds, NFTs, DEFI Pool, Online Retail
https://HiveHustlers.com - Community for Entrepreneurs and All Around Hustlers
https://coin-logic.com - Live crypto market data, news, and research
https://blocktunes.net - Music NFTs, DAO, Downloads, and more
https://groovelogic.audio - DJ/Producer/Sound Engineer music and services
https://weedcash.org - The Highest Form of Social Media

### Video Channels

View my channel on 3speak.tv! Video platfrom for a free speech society!
https://3speak.tv/user/thelogicaldude

But if you must... here is the YouTube channel link: 
https://www.youtube.com/channel/UCtGApfTp4ZzLHksDdImJ9JA

### Other Ways To Support

If you like what I am doing, please consider voting for my Hive Engine witness with your staked WORKERBEE! 

https://tribaldex.com/witnesses

Get started playing Splinterlands, the top blockchain game in the world, today!
https://splinterlands.com?ref=thelogicaldude


![thelogicaldudeprojects.png](https://files.peakd.com/file/peakd-hive/thelogicaldude/23vsEDk68zGePbEP3RTZC12jAcNkxST8ua2VM5fDtTPXtSuWd3F7CSzdLo3TgfS3y22K7.png)
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 930 others
πŸ‘Ž  , , , , ,
properties (23)
authorthelogicaldude
permlinkhow-to-set-up-your-own-hive-break-away-front-end
categoryhive
json_metadata{"app":"peakd/2022.05.9","format":"markdown","tags":["hive","communities","spknetwork","3speak","frontend","diy","hivehustlers","leofinance","ctp","proofofbrain"],"users":["spknetwork.","ecency","blocktunes","psorigins","YOURIPADDRESS","spknetwork"],"image":["https://files.peakd.com/file/peakd-hive/thelogicaldude/23vhwaPPQPXZxQ5TPaVECrqFkxmcNnRBHVsiHFxoTm4LrDgdvBNR4J8LEF6tSQD465H3u.jpeg","https://files.peakd.com/file/peakd-hive/thelogicaldude/23swib6kJVLFPMDtTtTLFMuTrovhzM5C9mVfhwf49kShtEvZY8qmnw2LJUNYrx7L3XbSJ.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23tGXhX1zzmUqbdoMGSBgVSzrXF3KB2zC8ngF2HrNu6KsWJe5qRjep1B9HjKwKXC2VoJH.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23tvAj2Cqu3kWsnSrsN9kvyU9RbvQBfFpPNWHV9aaEBdf23GjZdZQZykuD9VRWvxJyZWs.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23sxmuXPzDGtLuJ11qWm1xNsAeDQJPXFQmVVG4jUonhmEh1FQTwWZVKPmgkCbRrYxyQvg.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23twAKVLFquTSh1UptfvJPZcoAHDh3oV3Vqtqf9uJYrFrSZb7MLrCr4JRNt2DsvCoKx4k.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23tcLZ1i3G3xUkDZB6aJvtPsdoaUBRMatHDP92VRyay4Dh5jYZBA7BK61b3ThLXFnjNEq.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23twAKVLFrAhrfQBvtgL8tEZt2QHcmuMEz5TqDSNxTyWYPno6b6vKWupBNTC81dZt6Zb5.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/48GC4cQjCiAjQYZ5EfSfxBEbzqGLTnz9pD7hpzSHN5cKVRGvQzwKqr22ubbX2AeNky.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23t72QrdXxLqR8m3gyfcoY8SMMX8pj3HGerLETUBi2E11q6WHvXX7K4JX7mcDo7nAJ3YH.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23t74jUAy2z5vbSBUJqtQsjWhJnAH1TnjjJF4kiGXfpTqhtcoDRAJXHoXGEo4nB4oMoEQ.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23tRrM4jtn7w2bhBeCdqwyy5JrrR2KcvMM4eT85BT8xvz9MQKXbpFVCf3LN8DB9Fw97ux.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23tGRcZZpaAgxa5NFqu1wcewgqGwJ3shFHfwTy9cMkMzo6crHW5FPsBfHgJyzM5rSycaH.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23tRxswugxozUxcLxaSUWCnAmK7kVeydKxUJNdZ2f7tH5wj5c7GRq67QHFtDvC6nFGqBM.png","https://files.peakd.com/file/peakd-hive/thelogicaldude/23vsEDk68zGePbEP3RTZC12jAcNkxST8ua2VM5fDtTPXtSuWd3F7CSzdLo3TgfS3y22K7.png"]}
created2022-07-05 20:10:18
last_update2022-07-06 03:00:27
depth0
children54
last_payout2022-07-12 20:10:18
cashout_time1969-12-31 23:59:59
total_payout_value129.608 HBD
curator_payout_value129.372 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16,396
author_reputation278,954,570,620,478
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,597,812
net_rshares425,339,421,696,075
author_curate_reward""
vote details (1000)
@aiovo ·
great work I will help a lot of users in setting it up 
properties (22)
authoraiovo
permlinkre-thelogicaldude-202276t222454963z
categoryhive
json_metadata{"tags":["hive","communities","spknetwork","3speak","frontend","diy","hivehustlers","leofinance","ctp","proofofbrain"],"app":"ecency/3.0.24-vision","format":"markdown+html"}
created2022-07-06 17:24:51
last_update2022-07-06 17:24:51
depth1
children0
last_payout2022-07-13 17:24:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation15,891,884,044,421
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,622,906
net_rshares0
@aschatria ·
$0.02
This could be of huge help for the people interested in having their own thing around here. 
!HBIT 
!LUV 
πŸ‘  
properties (23)
authoraschatria
permlinkre-thelogicaldude-202276t153728238z
categoryhive
json_metadata{"tags":["hive","communities","spknetwork","3speak","frontend","diy","hivehustlers","leofinance","ctp","proofofbrain"],"app":"ecency/3.0.24-vision","format":"markdown+html"}
created2022-07-06 13:37:27
last_update2022-07-06 13:37:27
depth1
children3
last_payout2022-07-13 13:37:27
cashout_time1969-12-31 23:59:59
total_payout_value0.011 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length105
author_reputation38,421,584,470,789
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,617,510
net_rshares40,635,651,301
author_curate_reward""
vote details (1)
@hivebits ·
Success! You mined .9 <a href="https://peakd.com/@hivebits/introducing-hivebits">HBIT</a> & the user you replied to received .1 HBIT on your behalf. <a href="https://hive.blog/hbit/@hivebits.mine/mine-hbit">mine</a> | <a href="https://tribaldex.com/wallet/" style="text-decoration:none">wallet</a> | <a href="https://hive-engine.com/trade/HBIT/" style="text-decoration:none">market</a> | <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">tools</a> | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">subscribe</a> | <a href="https://ichthys.netlify.app" style="text-decoration:none"><>< daily</a>
<br><center><a href="https://peakd.com/hive-159259/@crrdlx/voting-for-the-smallest-hbit-unit">Vote to name the smallest HBIT unit.</a></center>
properties (22)
authorhivebits
permlinkre-re-thelogicaldude-202276t153728238z-20220706t161825z
categoryhive
json_metadata"{"app": "beem/0.24.26"}"
created2022-07-06 16:18:24
last_update2022-07-06 16:18:24
depth2
children0
last_payout2022-07-13 16:18:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length843
author_reputation1,532,850,895,280
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,621,378
net_rshares0
@luvshares ·
@aschatria<sub>(1/1)</sub> gave you LUV. <a href="https://peakd.com/@luvshares/about" style="text-decoration:none"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKU7oyCXxGwYyudB42kJ7JtoZ63bdeHvm4icoT9xdGNxA4i4BwudGyPvTQrEwPd.gif"></a> <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">H-E tools</a> | <a href="https://tribaldex.com/wallet">my wallet</a>  | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://ichthys.netlify.app" style="text-decoration:none"><><</a>
<br><center><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/luvshares/242henrWsje7ivLwY3jxy15af3LJqvUzEmrEKAViGAowE1XsPqkDUuQ6QnwYpVJUWKN7c.gif"></a><br><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">HiveBuzz.me NFT for Peace</a></center>
properties (22)
authorluvshares
permlinkre-re-thelogicaldude-202276t153728238z-20220706t133826z
categoryhive
json_metadata"{"app": "beem/0.24.26"}"
created2022-07-06 13:38:27
last_update2022-07-06 13:38:27
depth2
children0
last_payout2022-07-13 13:38:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length961
author_reputation5,187,627,985,809
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,617,539
net_rshares0
@thelogicaldude ·
Yep and allot cheaper than the other options, lol. I paid out THOUSANDS between @hivelist and @hivehustlers
properties (22)
authorthelogicaldude
permlinkre-aschatria-relqzw
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-06 14:02:21
last_update2022-07-06 14:02:21
depth2
children0
last_payout2022-07-13 14:02:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length107
author_reputation278,954,570,620,478
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,618,344
net_rshares0
@bitcoinflood ·
$0.02
RE: How To Set Up Your Own Hive Break Away Front End
This is actully super cool and a great way to build out communities on Hive. Is it easy enough later to integrate your own token to it?

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@bitcoinflood/re-thelogicaldude-2lvsrp)
πŸ‘  
properties (23)
authorbitcoinflood
permlinkre-thelogicaldude-2lvsrp
categoryhive
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@bitcoinflood/re-thelogicaldude-2lvsrp"}
created2022-07-06 17:55:51
last_update2022-07-06 17:55:51
depth1
children1
last_payout2022-07-13 17:55:51
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length240
author_reputation1,220,058,535,066,233
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,623,568
net_rshares44,057,037,226
author_curate_reward""
vote details (1)
@thelogicaldude ·
I hear that will be the case, but I am not the one to ask on that.
properties (22)
authorthelogicaldude
permlinkre-bitcoinflood-renwkd
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-07 17:57:48
last_update2022-07-07 17:57:48
depth2
children0
last_payout2022-07-14 17:57:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation278,954,570,620,478
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,654,918
net_rshares0
@brando28 ·
$0.03
RE: How To Set Up Your Own Hive Break Away Front End
Such a great post and guide! 
Thank you for your effort and for sharing this. This goes to bookmarks for later use. 

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@brando28/re-thelogicaldude-2r3xmc)
πŸ‘  
properties (23)
authorbrando28
permlinkre-thelogicaldude-2r3xmc
categoryhive
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@brando28/re-thelogicaldude-2r3xmc"}
created2022-07-06 07:58:36
last_update2022-07-06 07:58:36
depth1
children0
last_payout2022-07-13 07:58:36
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length217
author_reputation137,959,063,094,369
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,611,336
net_rshares59,300,061,686
author_curate_reward""
vote details (1)
@darkflame ·
$0.02
This is amazing I hope I can wrap my brain around this. I have step 1 and 3 done lol
πŸ‘  
properties (23)
authordarkflame
permlinkre-thelogicaldude-reluw0
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-06 15:26:27
last_update2022-07-06 15:26:27
depth1
children1
last_payout2022-07-13 15:26:27
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation70,572,707,883,540
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,620,240
net_rshares39,850,004,858
author_curate_reward""
vote details (1)
@thelogicaldude ·
$0.03
Yeah, it's not that difficult once you get the server setup. The original guide used the Privex webbox that has that setup, but their $5 option is sold out and why pay double when I can just take a few minutes and do the setup on a different server.
πŸ‘  
properties (23)
authorthelogicaldude
permlinkre-darkflame-relw0y
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-06 15:50:57
last_update2022-07-06 15:50:57
depth2
children0
last_payout2022-07-13 15:50:57
cashout_time1969-12-31 23:59:59
total_payout_value0.014 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length249
author_reputation278,954,570,620,478
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,620,851
net_rshares54,026,977,715
author_curate_reward""
vote details (1)
@deeanndmathews ·
$0.05
WOW ... this is amazing ... a walkthrough to one's very own Hive front-end ... a walk-through that even someone that isn't code-heavy can follow!  
πŸ‘  
properties (23)
authordeeanndmathews
permlinkre-thelogicaldude-reldri
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-06 09:16:30
last_update2022-07-06 09:16:30
depth1
children0
last_payout2022-07-13 09:16:30
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length147
author_reputation719,357,041,313,780
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,612,393
net_rshares86,628,747,291
author_curate_reward""
vote details (1)
@flquin ·
$0.04
What an incredible guide. I'm not much given to programming, but your way of explaining, makes me believe it's easier than i think jejej.

The utilities that i see are many and the most important thing is to reach more people and make them feel comfortable in the incredible world of Hive.

!PIZZA
!LOLZ
!gif amazing
πŸ‘  
properties (23)
authorflquin
permlinkre-thelogicaldude-rekno7
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-05 23:53:09
last_update2022-07-05 23:53:09
depth1
children3
last_payout2022-07-12 23:53:09
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.022 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length316
author_reputation39,621,580,946,455
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,603,341
net_rshares74,419,535,205
author_curate_reward""
vote details (1)
@hivegifbot ·
<center>https://media.tenor.com/images/4d95b51b9af8962e5b8ad0b668e6a5b0/tenor.gif
[Via Tenor](https://tenor.com/)</center>
properties (22)
authorhivegifbot
permlinkre-re-thelogicaldude-rekno7-20220705t235402z
categoryhive
json_metadata"{"app": "beem/0.24.26"}"
created2022-07-05 23:54:03
last_update2022-07-05 23:54:03
depth2
children0
last_payout2022-07-12 23:54:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation38,021,174,428,086
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,603,366
net_rshares0
@lolzbot ·
<div class='pull-right'><center><img src="https://lolztoken.com/lolz.png"><br><a href="https://lolztoken.com">lolztoken.com</a></p><br><br><br><br></center></div><p><center><strong>What’s a squirrel’s favorite kind of joke?<br>Acorny one.</strong><br><sub>Credit: <a href="https://peakd.com/@reddit">reddit</a></sub><br>@thelogicaldude, I sent you an <a href="https://lolztoken.com">$LOLZ</a> on behalf of @flquin<br>Use the <strong>!LOL</strong> or <strong>!LOLZ</strong> command to share a joke and an <strong>$LOLZ</strong><br>(1/1)</center></p>
properties (22)
authorlolzbot
permlinkre-re-thelogicaldude-rekno7-20220705t235405z
categoryhive
json_metadata"{"app": "beem/0.24.19"}"
created2022-07-05 23:54:09
last_update2022-07-05 23:54:09
depth2
children0
last_payout2022-07-12 23:54:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length548
author_reputation110,824,387,378,941
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,603,368
net_rshares0
@thelogicaldude ·
It's really easier than you think. The hardest part is the initial server setup. The rest is really straight forward. If you get one of the Privex webboxes, allot of that is already done according to the original guide, but their cheaper option was out of stock so I set it up from scratch. 
πŸ‘  
properties (23)
authorthelogicaldude
permlinkre-flquin-reknvh
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-05 23:57:18
last_update2022-07-05 23:57:18
depth2
children0
last_payout2022-07-12 23:57:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length291
author_reputation278,954,570,620,478
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,603,441
net_rshares2,266,802,662
author_curate_reward""
vote details (1)
@hazmat ·
$0.05
RE: How To Set Up Your Own Hive Break Away Front End
Well explained and detailed guide. Really love the info here

Posted using [LeoFinance Mobile](https://leofinance.io)
πŸ‘  
properties (23)
authorhazmat
permlinkwell-explained-and-detailed-gu-5m4sx1x6m3a651w8g47801es5p4252r0
categoryhive
json_metadata{"app":"LeoFinance/android/1.0.0","format":"markdown"}
created2022-07-06 06:51:54
last_update2022-07-06 06:51:54
depth1
children0
last_payout2022-07-13 06:51:54
cashout_time1969-12-31 23:59:59
total_payout_value0.025 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length117
author_reputation41,206,964,452,654
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd5,000
post_id114,610,236
net_rshares90,490,857,103
author_curate_reward""
vote details (1)
@hivebuzz ·
Dear @thelogicaldude, we need your help!<br><br>The Hivebuzz proposal already got important support from the community. However, it lost its funding a few days ago when the HBD stabilizer proposal rose above it.<br><br>May we ask you to support it so our team can continue its work?<br>You can do it on [Peakd](https://peakd.com/me/proposals/199), [Ecency](https://ecency.com/proposals/199), [Hive.blog](https://wallet.hive.blog/proposals) or [using HiveSigner](https://hivesigner.com/sign/update_proposal_votes?proposal_ids=%5B%22199%22%5D&approve=true).<br>https://peakd.com/me/proposals/199<br><br>All votes are helpful and yours will be much appreciated.<br> Thank you!
properties (22)
authorhivebuzz
permlinktxt-thelogicaldude-20220706t214831
categoryhive
json_metadata{"image":["http://hivebuzz.me/notify.t6.png"]}
created2022-07-06 21:48:30
last_update2022-07-06 21:48:30
depth1
children0
last_payout2022-07-13 21:48:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length673
author_reputation368,405,097,481,905
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,628,948
net_rshares0
@ifarmgirl ·
$0.02
RE: How To Set Up Your Own Hive Break Away Front End
So this is what was what the Break away community they spoke about in the CTT. Thank you for your comprehensive guide. Awesome!

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@ifarmgirl/re-thelogicaldude-3i7f8j)
πŸ‘  
properties (23)
authorifarmgirl
permlinkre-thelogicaldude-3i7f8j
categoryhive
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@ifarmgirl/re-thelogicaldude-3i7f8j"}
created2022-07-07 07:24:27
last_update2022-07-07 07:24:27
depth1
children0
last_payout2022-07-14 07:24:27
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length229
author_reputation667,655,630,897,571
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,640,321
net_rshares42,671,891,113
author_curate_reward""
vote details (1)
@igormuba ·
$0.02
Special thanks to @ecency for creating this pretty and open source design language for Hive front-ends
πŸ‘  
properties (23)
authorigormuba
permlinkre-thelogicaldude-202275t202837190z
categoryhive
json_metadata{"tags":["hive","communities","spknetwork","3speak","frontend","diy","hivehustlers","leofinance","ctp","proofofbrain"],"app":"ecency/3.0.24-vision","format":"markdown+html"}
created2022-07-05 23:28:36
last_update2022-07-05 23:28:36
depth1
children0
last_payout2022-07-12 23:28:36
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length102
author_reputation126,100,389,389,259
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,602,786
net_rshares42,185,546,650
author_curate_reward""
vote details (1)
@islandboi ·
$0.02
Great post. I'm getting ideas already.

I was following the steps until the server set up which seemed a bit technical for me . I do have some WordPress and Cpanel experience which might count.

But if I need help I know whom to reach out to😁

Quick question will people be able to sign up to Hive from a  breakaway community and vote as well?
πŸ‘  
properties (23)
authorislandboi
permlinkre-thelogicaldude-202275t1747831z
categoryhive
json_metadata{"tags":["hive","communities","spknetwork","3speak","frontend","diy","hivehustlers","leofinance","ctp","proofofbrain"],"app":"ecency/3.0.30-mobile","format":"markdown+html"}
created2022-07-05 21:47:06
last_update2022-07-05 21:47:06
depth1
children2
last_payout2022-07-12 21:47:06
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length343
author_reputation7,968,049,255,801
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,600,834
net_rshares43,410,466,153
author_curate_reward""
vote details (1)
@thelogicaldude ·
It's basically a customized @ecency front end so yes. The signup takes you to signup.hive.io. And yes you can vote.
πŸ‘  
properties (23)
authorthelogicaldude
permlinkre-islandboi-reki31
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-05 21:52:12
last_update2022-07-05 21:52:12
depth2
children1
last_payout2022-07-12 21:52:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length115
author_reputation278,954,570,620,478
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,600,926
net_rshares4,184,563,636
author_curate_reward""
vote details (1)
@islandboi ·
Awesome! What will be great is if an app could be integrated with Hive as Im thinking of a project that would be more suitable for mobile uploads.

Ecency has an app so would it be possible?
properties (22)
authorislandboi
permlinkre-thelogicaldude-202275t183457633z
categoryhive
json_metadata{"tags":["hive"],"app":"ecency/3.0.30-mobile","format":"markdown+html"}
created2022-07-05 22:34:57
last_update2022-07-05 22:34:57
depth3
children0
last_payout2022-07-12 22:34:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length190
author_reputation7,968,049,255,801
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,601,739
net_rshares0
@jacuzzi ·
$0.04
WOW, Great guide @thelogicaldude !!! 

!Pizza n !LUV all the way. :D 
πŸ‘  
properties (23)
authorjacuzzi
permlinkre-thelogicaldude-rekv4w
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-06 02:34:09
last_update2022-07-06 02:34:09
depth1
children5
last_payout2022-07-13 02:34:09
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.021 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation351,653,867,676,561
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,606,186
net_rshares72,292,432,566
author_curate_reward""
vote details (1)
@luvshares ·
@jacuzzi<sub>(1/4)</sub> gave you LUV. <a href="https://peakd.com/@luvshares/about" style="text-decoration:none"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKU7oyCXxGwYyudB42kJ7JtoZ63bdeHvm4icoT9xdGNxA4i4BwudGyPvTQrEwPd.gif"></a> <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">H-E tools</a> | <a href="https://tribaldex.com/wallet">my wallet</a>  | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://ichthys.netlify.app" style="text-decoration:none"><><</a>
<br><center><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/luvshares/242henrWsje7ivLwY3jxy15af3LJqvUzEmrEKAViGAowE1XsPqkDUuQ6QnwYpVJUWKN7c.gif"></a><br><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">HiveBuzz.me NFT for Peace</a></center>
properties (22)
authorluvshares
permlinkre-re-thelogicaldude-rekv4w-20220706t023502z
categoryhive
json_metadata"{"app": "beem/0.24.26"}"
created2022-07-06 02:35:03
last_update2022-07-06 02:35:03
depth2
children0
last_payout2022-07-13 02:35:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length959
author_reputation5,187,627,985,809
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,606,198
net_rshares0
@thelogicaldude ·
$0.03
Thanks man! Hope you are doing good!
πŸ‘  
properties (23)
authorthelogicaldude
permlinkre-jacuzzi-rekvzt
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-06 02:52:42
last_update2022-07-06 02:52:42
depth2
children3
last_payout2022-07-13 02:52:42
cashout_time1969-12-31 23:59:59
total_payout_value0.015 HBD
curator_payout_value0.015 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation278,954,570,620,478
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,606,494
net_rshares52,569,018,277
author_curate_reward""
vote details (1)
@jacuzzi ·
$0.04
I am doing ok-ish for sure.  :D<div class="pull-right"><a href="/@hive.engage">![](https://i.imgur.com/XsrNmcl.png)</a></div>
πŸ‘  
properties (23)
authorjacuzzi
permlinkre-1657082743588
categoryhive
json_metadata{"app":"engage"}
created2022-07-06 04:45:45
last_update2022-07-06 04:45:45
depth3
children2
last_payout2022-07-13 04:45:45
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.020 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length125
author_reputation351,653,867,676,561
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,608,389
net_rshares74,142,829,152
author_curate_reward""
vote details (1)
@kennyroy ·
Wow! getting better and better! ^_^
Congrats!
πŸ‘  
πŸ‘Ž  ,
properties (23)
authorkennyroy
permlinkrel6zq
categoryhive
json_metadata{"app":"hiveblog/0.1"}
created2022-07-06 06:50:15
last_update2022-07-06 06:50:15
depth1
children0
last_payout2022-07-13 06:50:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length45
author_reputation63,506,538,832,331
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,610,216
net_rshares117,967,535
author_curate_reward""
vote details (3)
@mireyalara ·
$0.05
Excellent post. Thanks for sharing. 
In a few weeks I'll open a community a Sustainable and Innovative Business. I will follow this guide you shared. 

Thank you! 
πŸ‘  
properties (23)
authormireyalara
permlinkre-thelogicaldude-202275t21193363z
categoryhive
json_metadata{"tags":["hive","communities","spknetwork","3speak","frontend","diy","hivehustlers","leofinance","ctp","proofofbrain"],"app":"ecency/3.0.30-mobile","format":"markdown+html"}
created2022-07-06 02:19:06
last_update2022-07-06 02:19:06
depth1
children0
last_payout2022-07-13 02:19:06
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length163
author_reputation7,607,902,438,816
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,605,925
net_rshares81,480,030,743
author_curate_reward""
vote details (1)
@myrv ·
$0.05
This is great I have to use this.
πŸ‘  ,
properties (23)
authormyrv
permlinkre-thelogicaldude-202275t21917654z
categoryhive
json_metadata{"tags":["hive","communities","spknetwork","3speak","frontend","diy","hivehustlers","leofinance","ctp","proofofbrain"],"app":"ecency/3.0.30-mobile","format":"markdown+html"}
created2022-07-06 03:09:18
last_update2022-07-06 03:09:18
depth1
children0
last_payout2022-07-13 03:09:18
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.024 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation546,226,260,351
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,606,825
net_rshares86,374,280,505
author_curate_reward""
vote details (2)
@onealfa.leo ·
$0.02
RE: How To Set Up Your Own Hive Break Away Front End
![BOOM1.jpg](https://images.hive.blog/DQmNgEJdWJwnTiWBbqq4BaoUPiC7b1ZSLQfXDeW7ssJphHt/BOOM1.jpg)

![toruk_washere_new3leo.jpg](https://images.hive.blog/DQmXa1mqNP2idcwduZgUuQgm3YfmdojcHRfJDmYYnGX3Syw/toruk_washere_new3leo.jpg)

Read [how this all have started](https://leofinance.io/@onealfa/toruk-was-here) with Toruk

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@onealfa.leo/re-thelogicaldude-3bdv8u)
πŸ‘  
properties (23)
authoronealfa.leo
permlinkre-thelogicaldude-3bdv8u
categoryhive
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@onealfa.leo/re-thelogicaldude-3bdv8u","links":["https://leofinance.io/@onealfa/toruk-was-here"],"image":["https://images.hive.blog/DQmNgEJdWJwnTiWBbqq4BaoUPiC7b1ZSLQfXDeW7ssJphHt/BOOM1.jpg","https://images.hive.blog/DQmXa1mqNP2idcwduZgUuQgm3YfmdojcHRfJDmYYnGX3Syw/toruk_washere_new3leo.jpg"]}
created2022-07-07 06:29:12
last_update2022-07-07 06:29:12
depth1
children0
last_payout2022-07-14 06:29:12
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length422
author_reputation10,000,524,131,210
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,639,531
net_rshares43,015,104,484
author_curate_reward""
vote details (1)
@pizzabot · (edited)
RE: How To Set Up Your Own Hive Break Away Front End
<center>PIZZA! PIZZA! 


PIZZA Holders sent <strong>$PIZZA</strong> tips in this post's comments:
flquin tipped thelogicaldude (x1)
@vimukthi<sub>(1/5)</sub> tipped @thelogicaldude (x1)


<sub>You can now send $PIZZA tips in <a href="https://discord.gg/hivepizza">Discord</a> via tip.cc!</sub></center>
properties (22)
authorpizzabot
permlinkre-how-to-set-up-your-own-hive-break-away-front-end-20220705t235408z
categoryhive
json_metadata"{"app": "beem/0.24.26"}"
created2022-07-05 23:54:09
last_update2022-07-06 15:07:51
depth1
children0
last_payout2022-07-12 23:54:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length302
author_reputation6,182,557,893,399
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,603,370
net_rshares0
@poshtoken · (edited)
https://twitter.com/thelogicaldao/status/1544414345269956609
https://twitter.com/shortsegments/status/1544548355254075392
https://twitter.com/ascha3a/status/1544676469938556931
https://twitter.com/DocumentingHive/status/1545321333478662144
https://twitter.com/hive_blockchain/status/1545537205686386689
<sub> The rewards earned on this comment will go directly to the people( @hive-blockchain ) sharing the post on Twitter as long as they are registered with @poshtoken. Sign up at https://hiveposh.com.</sub>
properties (22)
authorposhtoken
permlinkre-thelogicaldude-how-to-set-up-your-own-hive-break-away-front-end-1487
categoryhive
json_metadata"{"app":"Poshtoken 0.0.1","payoutToUser":["hive-blockchain"]}"
created2022-07-05 20:18:33
last_update2022-07-08 22:37:00
depth1
children0
last_payout2022-07-12 20:18:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length510
author_reputation3,944,733,998,298,809
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries
0.
accountreward.app
weight10,000
max_accepted_payout1,000,000.000 HBD
percent_hbd0
post_id114,598,096
net_rshares0
@punkblogs ·
$0.02
Very much detailed description. Really helpful and easy to understand. Thanks for sharing 
πŸ‘  
properties (23)
authorpunkblogs
permlinkre-thelogicaldude-202277t4126379z
categoryhive
json_metadata{"tags":["hive","communities","spknetwork","3speak","frontend","diy","hivehustlers","leofinance","ctp","proofofbrain"],"app":"ecency/3.0.30-mobile","format":"markdown+html"}
created2022-07-06 22:42:09
last_update2022-07-06 22:42:09
depth1
children0
last_payout2022-07-13 22:42:09
cashout_time1969-12-31 23:59:59
total_payout_value0.010 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length90
author_reputation8,193,376,139,771
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,630,654
net_rshares40,713,809,165
author_curate_reward""
vote details (1)
@rtonline ·
$0.05
RE: How To Set Up Your Own Hive Break Away Front End
Thanks for a very good guide. I may need this in the future.

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@rtonline/re-thelogicaldude-5yissq)
πŸ‘  
properties (23)
authorrtonline
permlinkre-thelogicaldude-5yissq
categoryhive
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@rtonline/re-thelogicaldude-5yissq"}
created2022-07-05 20:16:24
last_update2022-07-05 20:16:24
depth1
children0
last_payout2022-07-12 20:16:24
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation598,351,781,017,526
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,598,000
net_rshares76,407,612,360
author_curate_reward""
vote details (1)
@thisisawesome ·
$0.07
Wow @thelogicaldude, this guide is really fantastic, well done and very detailed, we sure need more community front ends, thanks a lot for sharing and stay awesome.
___
![](https://i.imgur.com/JTWgrUI.png)
*Made in Canva*

!ALIVE 
!CTP 

![](https://i.imgur.com/7Ti3UBC.jpg) - @flaxz - Admin/Moderator
___
*This post is AWESOME!*
*It will therefore be highlighted in our daily Curated Collections posting for today.*
*The goal of this project is to "highlightΒ **Awesome Content**, and growing the Hive ecosystem by rewarding it".*
![](https://media1.tenor.com/images/4540dfba15e6b58368d794f3fa71bdbb/tenor.gif)
[Source](https://tenor.com/view/colin-mochrie-whos-awesome-you-are-whos-line-isit-anyway-youreawesome-gif-11655828)
πŸ‘  
properties (23)
authorthisisawesome
permlinkre-thelogicaldude-rekn71
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-05 23:42:39
last_update2022-07-05 23:42:39
depth1
children3
last_payout2022-07-12 23:42:39
cashout_time1969-12-31 23:59:59
total_payout_value0.032 HBD
curator_payout_value0.033 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length726
author_reputation110,070,596,839,945
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,603,141
net_rshares109,381,184,554
author_curate_reward""
vote details (1)
@thelogicaldude · (edited)
$0.02
Thanks! Hope people will use it and start to boost their businesses on the blockchain!
πŸ‘  ,
properties (23)
authorthelogicaldude
permlinkre-thisisawesome-reknfq
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-05 23:47:51
last_update2022-07-05 23:48:54
depth2
children1
last_payout2022-07-12 23:47:51
cashout_time1969-12-31 23:59:59
total_payout_value0.011 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length86
author_reputation278,954,570,620,478
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,603,245
net_rshares41,587,367,817
author_curate_reward""
vote details (2)
@thisisawesome ·
Maybe it can be used for tribe interfaces too with some adjustment, I know Ecency is quite solid to use, and Outposts is not, even Nitrous works a lot better these days than Outposts, keep up the good work.
___
![](https://i.imgur.com/JTWgrUI.png)
*Made in Canva*

![](https://i.imgur.com/7Ti3UBC.jpg) - @flaxz - Admin/Moderator<div class="pull-right"><a href="/@hive.engage">![](https://i.imgur.com/XsrNmcl.png)</a></div>
properties (22)
authorthisisawesome
permlinkre-1657135181113
categoryhive
json_metadata{"app":"engage"}
created2022-07-06 19:19:42
last_update2022-07-06 19:19:42
depth3
children0
last_payout2022-07-13 19:19:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length422
author_reputation110,070,596,839,945
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,625,421
net_rshares0
@youarealive ·
<center><p>@thelogicaldude! <b>You Are Alive</b> so I just staked 0.1 <b>$ALIVE</b> to your account on behalf of @thisisawesome. <sub>(18/20)</sub></p>
<p>The tip has been paid for by the <a href="https://www.wearealiveand.social/">We Are Alive Tribe</a> through the earnings on @alive.chat, feel free to swing by our daily chat any time you want. <br /> <img src="https://i.imgur.com/p2WXJLn.png"></p></center>
properties (22)
authoryouarealive
permlinkre-re-thelogicaldude-rekn71-20220705t234334z
categoryhive
json_metadata"{"app": "beem/0.24.26"}"
created2022-07-05 23:43:33
last_update2022-07-05 23:43:33
depth2
children0
last_payout2022-07-12 23:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length411
author_reputation9,405,372,030,551
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,603,163
net_rshares0
@tobetada ·
$0.03
so am I getting this right that with this approach it only costs ~$5 plus a bit monthly fee as opposed to the thousands of $$$ that one would have to spend with the Hive-Engine approach?

well done!

@tipu curate
πŸ‘  
properties (23)
authortobetada
permlinkre-thelogicaldude-rel884
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-06 07:16:51
last_update2022-07-06 07:16:51
depth1
children7
last_payout2022-07-13 07:16:51
cashout_time1969-12-31 23:59:59
total_payout_value0.016 HBD
curator_payout_value0.016 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length212
author_reputation522,814,267,817,977
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,610,642
net_rshares58,931,813,147
author_curate_reward""
vote details (1)
@thelogicaldude ·
$0.24
Yep, $5 a month for the server and the cost of the domain, so in essence startup cost is $25 with the $5 monthly to host. 

![untitled.gif](https://media.tenor.com/images/70d7c97d362ff0f1e4401010ad09b6ab/tenor.gif)
πŸ‘  
properties (23)
authorthelogicaldude
permlinkre-tobetada-relm9j
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-06 12:20:09
last_update2022-07-06 12:20:09
depth2
children5
last_payout2022-07-13 12:20:09
cashout_time1969-12-31 23:59:59
total_payout_value0.118 HBD
curator_payout_value0.118 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length214
author_reputation278,954,570,620,478
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,615,639
net_rshares410,203,297,306
author_curate_reward""
vote details (1)
@tobetada ·
$0.05
wow! I'll just tag @aggroed  here to make him aware of this development as I really think the best way forward is low entry cost to web3
πŸ‘  
properties (23)
authortobetada
permlinkre-thelogicaldude-relmj5
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-06 12:25:51
last_update2022-07-06 12:25:51
depth3
children4
last_payout2022-07-13 12:25:51
cashout_time1969-12-31 23:59:59
total_payout_value0.022 HBD
curator_payout_value0.023 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length136
author_reputation522,814,267,817,977
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,615,751
net_rshares81,175,951,878
author_curate_reward""
vote details (1)
@tipu ·
<a href="https://tipu.online/hive_curator?tobetada" target="_blank">Upvoted  &#128076;</a> (Mana: 26/46) <a href="https://peakd.com/hive/@reward.app/reward-app-quick-guide-updated" target="_blank">Liquid rewards</a>.
properties (22)
authortipu
permlinkre-re-thelogicaldude-rel884-20220706t071658z
categoryhive
json_metadata"{"app": "beem/0.24.26"}"
created2022-07-06 07:16:57
last_update2022-07-06 07:16:57
depth2
children0
last_payout2022-07-13 07:16:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length216
author_reputation55,213,748,013,644
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,610,645
net_rshares0
@vimukthi ·
RE: How To Set Up Your Own Hive Break Away Front End
This is a great tutorial. We need to market this to various content creators. This guy is one such candidate:

https://www.youtube.com/watch?v=Te73Fj3ZZiU

Surely there will be thousands like this with decent enough followings that could be a part of HIVE and @spknetwork 
!PIZZA
!LUV

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@vimukthi/re-thelogicaldude-3uutq8)
properties (22)
authorvimukthi
permlinkre-thelogicaldude-3uutq8
categoryhive
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@vimukthi/re-thelogicaldude-3uutq8","links":["https://www.youtube.com/watch?v=Te73Fj3ZZiU"],"image":["https://img.youtube.com/vi/Te73Fj3ZZiU/0.jpg"]}
created2022-07-06 15:06:39
last_update2022-07-06 15:06:39
depth1
children1
last_payout2022-07-13 15:06:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length385
author_reputation403,762,468,150,136
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,619,766
net_rshares0
@luvshares ·
@vimukthi<sub>(1/1)</sub> gave you LUV. <a href="https://peakd.com/@luvshares/about" style="text-decoration:none"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKU7oyCXxGwYyudB42kJ7JtoZ63bdeHvm4icoT9xdGNxA4i4BwudGyPvTQrEwPd.gif"></a> <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">H-E tools</a> | <a href="https://tribaldex.com/wallet">my wallet</a>  | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://ichthys.netlify.app" style="text-decoration:none"><><</a>
<br><center><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/luvshares/242henrWsje7ivLwY3jxy15af3LJqvUzEmrEKAViGAowE1XsPqkDUuQ6QnwYpVJUWKN7c.gif"></a><br><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">HiveBuzz.me NFT for Peace</a></center>
properties (22)
authorluvshares
permlinkre-re-thelogicaldude-3uutq8-20220706t150747z
categoryhive
json_metadata"{"app": "beem/0.24.26"}"
created2022-07-06 15:07:48
last_update2022-07-06 15:07:48
depth2
children0
last_payout2022-07-13 15:07:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length960
author_reputation5,187,627,985,809
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,619,790
net_rshares0
@wanderingmoon ·
$0.02
Thoroughly and impressively written explanation. I usually get lost in tecno-babble but I was able to follow this. πŸ˜πŸ‘πŸ‘
!hivebits and !LUV
πŸ‘  
properties (23)
authorwanderingmoon
permlinkre-thelogicaldude-rem3dh
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-06 18:29:42
last_update2022-07-06 18:29:42
depth1
children1
last_payout2022-07-13 18:29:42
cashout_time1969-12-31 23:59:59
total_payout_value0.012 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length137
author_reputation16,143,416,618,833
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,624,187
net_rshares43,707,667,501
author_curate_reward""
vote details (1)
@luvshares ·
@wanderingmoon<sub>(1/1)</sub> gave you LUV. <a href="https://peakd.com/@luvshares/about" style="text-decoration:none"><img src="https://files.peakd.com/file/peakd-hive/crrdlx/AKU7oyCXxGwYyudB42kJ7JtoZ63bdeHvm4icoT9xdGNxA4i4BwudGyPvTQrEwPd.gif"></a> <a
    href="https://crrdlx.websavvy.work/" style="text-decoration:none">H-E tools</a> | <a href="https://tribaldex.com/wallet">my wallet</a>  | <a 
    href="https://discord.gg/K5GvNhcPqR" style="text-decoration:none">discord</a> | <a href="https://peakd.com/c/hive-159259">community | <a href="https://ichthys.netlify.app" style="text-decoration:none"><><</a>
<br><center><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank"><img src="https://files.peakd.com/file/peakd-hive/luvshares/242henrWsje7ivLwY3jxy15af3LJqvUzEmrEKAViGAowE1XsPqkDUuQ6QnwYpVJUWKN7c.gif"></a><br><a href="https://peakd.com/nftforpeace/@hivebuzz/nft-for-peace" target="_blank">HiveBuzz.me NFT for Peace</a></center>
properties (22)
authorluvshares
permlinkre-re-thelogicaldude-rem3dh-20220706t183048z
categoryhive
json_metadata"{"app": "beem/0.24.26"}"
created2022-07-06 18:30:48
last_update2022-07-06 18:30:48
depth2
children0
last_payout2022-07-13 18:30:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length965
author_reputation5,187,627,985,809
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,624,217
net_rshares0
@whatsup ·
$0.05
RE: How To Set Up Your Own Hive Break Away Front End
Great guide!  Thank you

Posted Using [LeoFinance <sup>Beta</sup>](https://leofinance.io/@whatsup/re-thelogicaldude-31ctjy)
πŸ‘  
properties (23)
authorwhatsup
permlinkre-thelogicaldude-31ctjy
categoryhive
json_metadata{"app":"leofinance/0.2","format":"markdown","tags":["leofinance"],"canonical_url":"https://leofinance.io/@whatsup/re-thelogicaldude-31ctjy"}
created2022-07-05 22:57:21
last_update2022-07-05 22:57:21
depth1
children0
last_payout2022-07-12 22:57:21
cashout_time1969-12-31 23:59:59
total_payout_value0.024 HBD
curator_payout_value0.025 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length123
author_reputation519,804,459,507,800
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,602,153
net_rshares84,701,703,245
author_curate_reward""
vote details (1)
@wlffreitas ·
$0.02
I've bookmarked this post for those who know in the future, very well explained.
πŸ‘  
properties (23)
authorwlffreitas
permlinkre-thelogicaldude-remo8b
categoryhive
json_metadata{"tags":["hive"],"app":"peakd/2022.05.9"}
created2022-07-07 02:00:12
last_update2022-07-07 02:00:12
depth1
children0
last_payout2022-07-14 02:00:12
cashout_time1969-12-31 23:59:59
total_payout_value0.011 HBD
curator_payout_value0.011 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length80
author_reputation82,057,386,918,138
root_title"How To Set Up Your Own Hive Break Away Front End "
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id114,635,499
net_rshares43,361,964,377
author_curate_reward""
vote details (1)