scopesessions.org/_site
2017-01-25 22:51:30 +01:00
..
about optimized tags 2017-01-25 22:51:30 +01:00
artists optimized tags 2017-01-25 22:51:30 +01:00
assets added spektrum 2016-06-26 21:22:04 +02:00
bower_components deploy 2017-01-23 12:35:40 +01:00
call-for-talks optimized tags 2017-01-25 22:51:30 +01:00
css optimized design. background image changes 2017-01-23 14:32:34 +01:00
images #62 2017-01-16 00:02:21 +01:00
js #47 2015-09-16 21:01:58 +02:00
newsletter_content layout improvements 2017-01-22 19:44:25 +01:00
session optimized tags 2017-01-25 22:51:30 +01:00
special optimized tags 2017-01-25 22:51:30 +01:00
spektrum optimized tags 2017-01-25 22:51:30 +01:00
video optimized tags 2017-01-25 22:51:30 +01:00
video_fullscreen optimized tags 2017-01-25 22:51:30 +01:00
bower.json added missing vimeo urls to existing talks 2017-01-22 18:36:33 +01:00
feed.json optimized tags 2017-01-25 22:51:30 +01:00
feed.xml optimized tags 2017-01-25 22:51:30 +01:00
Gemfile added servando 2016-09-09 16:05:07 +02:00
Gemfile.lock resizing images for better performance 2016-06-12 17:46:27 +02:00
index.html optimized tags 2017-01-25 22:51:30 +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