scopesessions.org/_site
2016-06-12 17:46:27 +02:00
..
about resizing images for better performance 2016-06-12 17:46:27 +02:00
artists resizing images for better performance 2016-06-12 17:46:27 +02:00
assets updated about 2016-02-04 10:46:18 +01:00
bower_components #47 2015-09-16 21:01:58 +02:00
call-for-talks resizing images for better performance 2016-06-12 17:46:27 +02:00
css #47 2015-09-16 21:01:58 +02:00
images resizing images for better performance 2016-06-12 17:46:27 +02:00
js #47 2015-09-16 21:01:58 +02:00
newsletter_content resizing images for better performance 2016-06-12 17:46:27 +02:00
session resizing images for better performance 2016-06-12 17:46:27 +02:00
bower.json #47 2015-09-16 21:01:58 +02:00
feed.xml resizing images for better performance 2016-06-12 17:46:27 +02:00
Gemfile resizing images for better performance 2016-06-12 17:46:27 +02:00
Gemfile.lock resizing images for better performance 2016-06-12 17:46:27 +02:00
index.html resizing images for better performance 2016-06-12 17:46:27 +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