Skip to content

Instantly share code, notes, and snippets.

View thubamamba's full-sized avatar
🎯
Focusing

Thuba Mamba thubamamba

🎯
Focusing
View GitHub Profile
@thubamamba
thubamamba / setup-vagrant-macosx.md
Created April 13, 2020 05:13 — forked from tomysmile/setup-vagrant-macosx.md
How to Install Virtualbox and Vagrant on MacOSX

Install Virtualbox && Vagrant for MacOSX

Vagrant uses Virtualbox to manage the virtual dependencies. You can directly download virtualbox and install or use homebrew for it.

$ brew cask install virtualbox

Now install Vagrant either from the website or use homebrew for installing it.

@thubamamba
thubamamba / rails_react_heroku_quickstart.md
Created April 2, 2020 14:13 — forked from MJeorrett/rails_react_heroku_quickstart.md
How to get a React Client with Rails api running on Heroku

Rails React Heroku Quickstart

A quickstart guide for getting a React.js client running with a Rails API, both hosted on Heroku. Topics Covered:

  • Creating a Rails API and deploying to Heroku
  • Creating a React app using create-react-app and deploying to Heroku
  • Configuring React app to speak to local host / Heroku instance of API automatically

Prerequisits

This is a very quick run down so it is assumed that you have a basic understanding of Unix, Node, NPM, Rails and React. It is also assumed that you have Ruby, Node and NPM installed already.

Quick Note on the Tools Used