scopesessions.org/_site
2015-11-11 19:53:04 +01:00
..
2011 built with jekyll 2.5.3 2015-11-11 19:53:04 +01:00
2012 built with jekyll 2.5.3 2015-11-11 19:53:04 +01:00
2013 built with jekyll 2.5.3 2015-11-11 19:53:04 +01:00
2014 built with jekyll 2.5.3 2015-11-11 19:53:04 +01:00
2015 built with jekyll 2.5.3 2015-11-11 19:53:04 +01:00
about built with jekyll 2.5.3 2015-11-11 19:53:04 +01:00
artists built with jekyll 2.5.3 2015-11-11 19:53:04 +01:00
assets making upcoming session more visible 2015-09-01 21:52:43 +02:00
bower_components #47 2015-09-16 21:01:58 +02:00
call-for-talks built with jekyll 2.5.3 2015-11-11 19:53:04 +01:00
css #47 2015-09-16 21:01:58 +02:00
images up 2015-11-06 11:41:19 +01:00
js #47 2015-09-16 21:01:58 +02:00
newsletter_content built with jekyll 2.5.3 2015-11-11 19:53:04 +01:00
bower.json #47 2015-09-16 21:01:58 +02:00
feed.xml built with jekyll 2.5.3 2015-11-11 19:53:04 +01:00
index.html built with jekyll 2.5.3 2015-11-11 19:53:04 +01: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