scopesessions.org/_site
2015-06-23 17:21:42 +02:00
..
2011 updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
2012 updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
2013 updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
2014 updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
2015 updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
about updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
artists updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
assets Adding _site to Versioning for git-hook based deplyoment 2015-04-16 10:18:08 +02:00
bower_components updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
call-for-talks updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
css - changed order of upcoming talk 2015-04-24 18:48:20 +02:00
images updating contents for session 44 2015-06-07 05:45:26 +02:00
js - changed order of upcoming talk 2015-04-24 18:48:20 +02:00
newsletter_content updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
bower.json Adding _site to Versioning for git-hook based deplyoment 2015-04-16 10:18:08 +02:00
feed.xml updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
index.html updating infos from session 43, 44 and 45 2015-06-23 17:21:42 +02:00
README.md Updated contents 2015-04-16 13:30:56 +02:00

Scopesessions website

scopesessions.org

Development

  • Install Jekyll
  • Clone repository
git clone https://acorbi@bitbucket.org/acorbi/scopesessions.org.git
  • Install dependencies
bower install
  • Serve files
jekyll serve
# Serve starts a small webserver with your site on http://localhost:4000 for testing
  • Build files
jekyll build
# Build generates the HTML/JS/CSS into _site/
  • Commit/Push changes to master or other branch. NOTE Optimally, all changes would be done in a separated branch and then merged per Pull-Request into master.
git add --all .
git commit -m "Changed this and that"
git push

Deployment

  • SSH into scopesessions.org and pull the changes from master.
cd /var/www/vhosts/scopesessions.org
git checkout master
git pull