Code Monkey home page Code Monkey logo

heroku-github's Introduction

heroku-github

Example Node.JS app to deploy Heroku app from Github.

Demo

https://heroku-github-deploy.herokuapp.com/

Create project

mkdir heroku-github
cd heroku-github
npm init

Install express

npm install --save express

Create index.js

const express = require("express");
const app = express();
const PORT = process.env.PORT || 3000;

app.get("/", (req, res) => res.send("Hello World!"));

app.listen(PORT, () => console.log(`Example app listening on port ${PORT}!`));

Note process.env.PORT is necessary to deploy in heroku

Configure npm start in package.json

heroku will run npm start on deploy. You can change this command by setting Procfile : Heroku Procfile

"scripts": {
    "start": "node index.js"
}

Initialize Git and push to Github

git init
git add .
git commit -am "Inital Commit"
git remote add origin https://github.com/acc/heroku-github.git
git push origin master

Replace https://github.com/acc/heroku-github.git with the git repository you want.

You can also create a Github repository first and clone it.

Initialize heroku

heroku login
heroku create heroku-github-deploy

heroku-github-deploy is the app name. Change this with desired app name or heroku will generate random name if null

Set Deployment method

In your newly created heroku-github-deploy dashboard, go to

  • Deploy
  • Choose Github in Deployment method
  • Type in repository name : in this case heroku-github
  • Click Search and click Connect

Screen Shot

  • Choose Enable Automatic Deploys if you want. This will set heroku to deploy everytime you push a commit to github
  • Click DeployBranch and done

Screen Shot

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.