Heroku and Github integration (how to structure the project)

后端 未结 4 486
余生分开走
余生分开走 2020-12-09 08:37

I\'m creating a webservice and I want to store the source on github and run the app on heroku. I haven\'t seen my exact scenario addressed anywhere on the \'net so far, so

相关标签:
4条回答
  • 2020-12-09 09:14

    I would add everything underneath /my_rails_app to the Heroku git repository. Then add GitHub as a remote and add everything underneath /project to the GitHub repository. Then you can push the Rails application to Heroku (from /my_rails_app) and push the full project to GitHub (from /project).

    0 讨论(0)
  • 2020-12-09 09:27

    Just overwrite Rails' default README file. There's no reason to keep it around. Put your other project-management-related stuff in the doc directory. While you certainly have valid reasons for wanting to set it up the way you did, you're just creating a headache for yourself by going against convention, and it's probably not worth the benefit.

    0 讨论(0)
  • 2020-12-09 09:28

    Here's a simple solution that may or may not work for you.

    • Create two projects on GitHub. One project should be just the Rails app (i.e. everything inside the Rails app directory). The other project should be everything outside the Rails app directory.

    • Add the Rails app project as a git-submodule within the "container" project.

    • Now you can add Heroku as a remote on the Rails app repository separately and push it to heroku. Heroku will accept the push because it is just a Rails app with the expected directories and files.

    0 讨论(0)
  • 2020-12-09 09:29

    A solution for the Heroku situation (not the README file):

    If you're using the new Heroku Cedar (I believe it wasn't available when you first asked your question) then your processes (like the rails server process) start up using Foreman. Thus, you can place a Procfile in the root github directory that looks like this:

    web:     my_rails_app/script/runserver.sh
    

    And then my_rails_app/script/runserver.sh could be a simple

    #!/bin/sh
    
    cd my_rails_app
    bundle exec rails server -p $PORT
    

    Locally, you should also create a file called .env (note the . at the beginning), which contains

    PORT=3000
    

    This file is read by foreman and used to set environment variables so that the port is set when you execute foreman start on your machine (from the root github directory, where the Procfile lies). The Heroku server takes care of the .env file on your dyno. The big advantage is you can set up multiple processes on the dyno that way!

    0 讨论(0)
提交回复
热议问题