Part 1- General Setup https://www.youtube.com/watch?v=GIL0-R1PRsQ
ssh [email protected] -i ~/.ssh/openbazaar
useradd -m -s /bin/bash openbazaar
usermod -a -G sudo openbazaar
passwd openbazaar
mkdir /home/openbazaar/.ssh
cp /root/.ssh/authorized_keys /home/openbazaar/.ssh/
chown -R openbazaar:openbazaar /home/openbazaar/.ssh/
more locale info if you need it-- https://askubuntu.com/questions/162391/how-do-i-fix-my-locale-issue
locale-gen "en_US.UTF-8"
dpkg-reconfigure locales
apt-get -y update
apt-get -y install software-properties-common
apt-add-repository ppa:chris-lea/libsodium
apt-get -y upgrade
apt-get -y install git build-essential libssl-dev libffi-dev python-dev openssl python-pip libzmq3-dev autoconf pkg-config libtool automake python-virtualenv
git clone https://github.com/zeromq/libzmq
cd libzmq
./autogen.sh && ./configure && make -j 4
make check && sudo make install && sudo ldconfig
cd
git clone https://github.com/OpenBazaar/OpenBazaar-Server.git
cd OpenBazaar-Server
virtualenv observer
source ./observer/bin/activate
pip install -r requirements.txt
nano ob.cfg
python openbazaard.py start