scopesessions.org/_site
2019-01-11 12:29:56 +01:00
..
about added Waseem to about page 2019-01-11 12:29:56 +01:00
artists added Waseem to about page 2019-01-11 12:29:56 +01:00
assets 7th birthday 2018-06-07 22:56:05 +02:00
bower_components - update 2018-12-05 13:22:41 +01:00
call-for-talks added Waseem to about page 2019-01-11 12:29:56 +01:00
css supporting spektrum and specials 2017-03-04 22:02:51 +01:00
event-special/2012/06/01 added Waseem to about page 2019-01-11 12:29:56 +01:00
images Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2019-01-06 13:19:33 +01:00
join-our-team added Waseem to about page 2019-01-11 12:29:56 +01:00
js outsourced video related JS, fixed CSS things, added visualberlinFestival videos 2017-01-27 11:29:45 +01:00
newsletter_content #79 2019-01-06 13:18:38 +01:00
session added Waseem to about page 2019-01-11 12:29:56 +01:00
special added Waseem to about page 2019-01-11 12:29:56 +01:00
spektrum added Waseem to about page 2019-01-11 12:29:56 +01:00
video added Waseem to about page 2019-01-11 12:29:56 +01:00
video_fullscreen Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2019-01-06 13:19:33 +01:00
bower.json added missing vimeo urls to existing talks 2017-01-22 18:36:33 +01:00
feed.json Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2019-01-06 13:19:33 +01:00
feed.xml added Waseem to about page 2019-01-11 12:29:56 +01:00
Gemfile added servando 2016-09-09 16:05:07 +02:00
Gemfile.lock - update 2018-12-05 13:22:41 +01:00
index.html added Waseem to about page 2019-01-11 12:29:56 +01:00
README.md resizing images for better performance 2016-06-12 17:46:27 +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
bundle 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