Skip to content

Instantly share code, notes, and snippets.

View drwasho's full-sized avatar

Dr Washington Sanchez drwasho

View GitHub Profile
@drwasho
drwasho / Install IPFS from Source in Windows.md
Last active June 3, 2024 09:59
How to install IPFS from source in Windows

Install IPFS in Windows

Install Go

  • Head to the download website
  • Click the latest version and download the .msi file

Create Paths

  • Create GOROOT system variable if it doesn't exist in C:\Go
@drwasho
drwasho / 1-1-3 Install Fix.md
Created April 17, 2016 22:19
1.1.3 Windows install error potential fix

Introduction

For reasons that we're in the middle of tracking down, some Windows users are having difficulties installing OpenBazaar 1.1.3. We have a possible fix to this problem. Please let us know in the comments whether it worked for you.

Instructions

  1. Delete the OpenBazaar folder, which is found in C:\Users\[your username]\AppData\Local\OpenBazaar
  • If you have previously installed OpenBazaar, it will not delete your database or listings (they are safe and you don't need to delete them)
  1. Reinstall OpenBazaar
@drwasho
drwasho / install-script.sh
Created April 24, 2016 21:41
Alternative install script for Ubuntu 15.10
#!/bin/bash
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install git
sudo apt-get install build-essential libssl-dev libffi-dev python-dev openssl python-pip libzmq3-dev
sudo echo "deb http://us.archive.ubuntu.com/ubuntu vivid main universe" | sudo tee -a /etc/apt/sources.list
sudo apt-get update
sudo apt-get -f install
sudo apt-get install libsodium-dev
sudo pip install cryptography

Manual/VPS Install Scripts for the OpenBazaar Server: Ubuntu (14.04, 15.10, 16.04) and Debian

These scripts will make your manual installation of OpenBazaar on your Linux machine or VPS a lot easier. To run the script:

  1. Install nano
  • Nano is a terminal based text editor
  • sudo apt-get install nano (no sudo for Debian)
  1. Select the directory you want to place the script... can be anywhere.
  2. Create the script file
  • sudo nano install.sh
@drwasho
drwasho / openbazaar-go-ubuntu.md
Last active November 18, 2020 22:50
Install OpenBazaar-Go on a Linux Digital Ocean Droplet

Install OpenBazaar-Go on Linux Digital Ocean Droplet

First off I'm going to assume you have created a user with sudo permissions, and that you're not running from root. I'm also assuming you have a satisfactory knowledge of the Linux terminal/bash commands.

If you have any trouble, join our OpenBazaar Slack group, and pop into the #openbazaar-ipfs channel.

Step 1: Create the install script

  • In your terminal, type: sudo nano install.sh
  • Paste in the following script:
@drwasho
drwasho / git-guide.md
Created May 5, 2016 02:58
Handy Git Guide for Testing a PR

Git Guide for Testing a PR

Checkout a branch from a remote repo

  1. git remote add morebrownies https://github.com/morebrownies/OpenBazaar-Client.git
  2. git fetch morebrownies
  3. git checkout morebrownies/chat

Checkout a PR from a remote repo

@drwasho
drwasho / install.sh
Last active July 25, 2016 22:59
Install script for the OpenBazaar-Go Server. Remember to give the script executable permissions.
#!bin/bash
# README
# Give the script executable permissions by typing: sudo chmod +x install.sh
# Run the script: sudo bash install.sh
# Install Dependencies and Tools
sudo apt-get update && sudo apt-get upgrade
sudo apt-get install git build-essential autoconf automake pkg-config libtool htop tree
@drwasho
drwasho / installOB.md
Last active August 28, 2016 23:39
Basic Instructions for Spinning up a VPS & OB Node w/ reasonble security

Instructions

  1. Create a VPS on Digital Ocean
    • Ensure that it is created with SSH access setup
  2. Login as root via ssh
    • ssh root@ipaddress
  3. Create a user
    • adduser yourusername
    • Add a password
  4. Give user root access
@drwasho
drwasho / obinstall.sh
Last active August 30, 2016 04:10
Installation script for Ubuntu 16.04.1 - used in miniprovistor
#!/bin/bash
sudo apt-get install -y git build-essential libssl-dev libffi-dev python-dev openssl python-pip libsodium-dev autoconf libzmq-dev pkg-config libtool
sudo pip install cryptography
(cd /home/obuser/; sudo git clone https://github.com/OpenBazaar/OpenBazaar-Server.git)
(cd /home/obuser/OpenBazaar-Server; sudo pip install -r requirements.txt)
@drwasho
drwasho / provision.sh
Last active October 5, 2016 04:38
Bash script to setup and install OpenBazaar on a VPS via miniprovistor
#!/bin/bash
# Bash script to setup and install OpenBazaar on a VPS via miniprovistor
sudo apt-get update -y && sudo apt-get upgrade -y
useradd -m obuser
echo obuser:password | chpasswd # The password is replaced by the user during install
echo "obuser ALL=(ALL:ALL) ALL" >> /etc/sudoers
sudo apt-get install -y git build-essential libssl-dev libffi-dev python-dev openssl python-pip libsodium-dev autoconf libzmq-dev pkg-config libtool
sudo pip install cryptography
(cd /home/obuser/; sudo git clone https://github.com/OpenBazaar/OpenBazaar-Server.git)
(cd /home/obuser/OpenBazaar-Server; sudo pip install -r requirements.txt)