scopesessions.org/_site
2019-06-12 08:34:33 +02:00
..
about session 84 2019-06-12 08:34:33 +02:00
artists session 84 2019-06-12 08:34:33 +02:00
assets added #80, updated sponsor logos in footer 2019-01-29 13:41:15 +01:00
bower_components - update 2018-12-05 13:22:41 +01:00
call-for-talks session 84 2019-06-12 08:34:33 +02:00
css supporting spektrum and specials 2017-03-04 22:02:51 +01:00
event-special/2012/06/01 session 84 2019-06-12 08:34:33 +02:00
images session 84 2019-06-12 08:34:33 +02:00
join-our-team session 84 2019-06-12 08:34:33 +02:00
js outsourced video related JS, fixed CSS things, added visualberlinFestival videos 2017-01-27 11:29:45 +01:00
newsletter_content session 84 2019-06-12 08:34:33 +02:00
session session 84 2019-06-12 08:34:33 +02:00
special session 84 2019-06-12 08:34:33 +02:00
spektrum session 84 2019-06-12 08:34:33 +02:00
video session 84 2019-06-12 08:34:33 +02:00
video_fullscreen session 84 2019-06-12 08:34:33 +02:00
bower.json added missing vimeo urls to existing talks 2017-01-22 18:36:33 +01:00
feed.json session 84 2019-06-12 08:34:33 +02:00
feed.xml session 84 2019-06-12 08:34:33 +02: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 session 84 2019-06-12 08:34:33 +02: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