TTUSDC / cpceed-webapp

CPCEED Web App
https://ttusdc.github.io/cpceed-webapp/
3 stars 0 forks source link

Moving docs to gh-pages #12

Closed asclines closed 7 years ago

asclines commented 7 years ago

So Travis offers a pretty simple way to deploy to a GitHub branch. link

It would look cleaner to have our documentation separated from the main project files. I know I personally wanted the documentation to follow the project so that when one was looking at prior versions of the project, they would have the documentation to go with. However, that could still be accomplished in GitHub versioning and tags by bundling the documentation into the release then.

I propose we add something similar to this into .travis.yml:

deploy:
  provider: pages
  skip_cleanup: true
  github_token: $GITHUB_TOKEN # Set in travis-ci.org dashboard
  local_dir: docs/
  on:
    branch: master
NilsG-S commented 7 years ago

Sounds good to me!

asclines commented 7 years ago

Closed in #14