SDM2016Friends / Assignment2

Software Development Method Assignment
0 stars 2 forks source link

fix missing files problem #11

Open allenzhong opened 8 years ago

allenzhong commented 8 years ago

Fix issue #10 @chandleryang76

allenzhong commented 8 years ago

@chandleryang76 for daily build, you can create a new app on heroku for testing.

chandleryang76 commented 8 years ago

1) I think we need to test deployment. if we uncomment below two line in .travis.yml, we can check it

on:

all_branches: true

--> on: all_branches: true

2) I have a question. After we upload Gemfile.lock into Sprint1, what happen when merging Sprint1 into Master? Gemfile.lock is uploaded into master without .gitignore?

JohnnyJ0622 commented 8 years ago

Cool.

allenzhong commented 8 years ago

@chandleryang76 we can add new application for test using sprint1 branch

chandleryang76 commented 8 years ago

It's okay. I made 'sprintfortest' app on heroku If we change app name from sdm2016friends to sprintfortest in .travias.yml, we can test it. app: sdm2016friends #on: # all_branches: true ----> app: sprintfortest on: all_branches: true

allenzhong commented 8 years ago

i think in .travic.yml, you can add more than one app_key

deploy:
  provider: heroku
  api_key:
    master: ...
    production: ...
  app:
    master: my-app-staging
    production: my-app-production
chandleryang76 commented 8 years ago

That's good.