Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am jesscodes on github.
  • I am purplethe0ry (https://keybase.io/purplethe0ry) on keybase.
  • I have a public key ASAADPMTLMG62bJVDE6bZJcRJiy1Kn2ibZpSm4zFlVqlzAo

To claim this, I am signing this object:

In Xcode: create new project
On Github: initialize new repo
In terminal: change directory into project folder and enter the following commands
git init
@JessCodes
JessCodes / rails-bower-materialize-heroku.md
Last active April 2, 2018 01:33
Rails, Bower, Materialize, Heroku in 10 Steps!

Rails, Bower, Materialize, Heroku

  1. To install Bower, you need to have to have node, npm, and git installed. Then run npm install -g bower
  2. Create a bower.json file and add:
{
  "name": "personal-website",
  "dependencies": {
    "jquery": "latest",
    "materialize": "latest",
@JessCodes
JessCodes / gist:b24f0fc647df3cef52177192cbb35907
Created January 23, 2017 02:14
Rails, Bower, Materialize, Heroku in 10 Steps
# Rails, Bower, Materialize, Heroku
1. To install Bower, you need to have to have node, npm, and git installed. Then run ``` npm install -g bower ```
2. Create a bower.json file and add:
```
{
"name": "personal-website",
"dependencies": {
"jquery": "latest",
"materialize": "latest",

Creating a Rails App, Pushing to Github, Deploying to Heroku

Rails & Github:

'rails new <new-app> --database=postgresql’ 
cd <new-app>