scopesessions.org/_site
Alex Corbi 3b544b138c #72
2018-02-28 22:42:45 +01:00
..
about #72 2018-02-28 22:42:45 +01:00
artists #72 2018-02-28 22:42:45 +01:00
assets
bower_components #63 2017-02-07 18:32:17 +01:00
call-for-talks #72 2018-02-28 22:42:45 +01:00
css supporting spektrum and specials 2017-03-04 22:02:51 +01:00
event-special/2012/06/01 #72 2018-02-28 22:42:45 +01:00
images #72 2018-02-28 22:42:45 +01:00
join-our-team #72 2018-02-28 22:42:45 +01:00
js outsourced video related JS, fixed CSS things, added visualberlinFestival videos 2017-01-27 11:29:45 +01:00
newsletter_content #72 2018-02-28 22:42:45 +01:00
session #72 2018-02-28 22:42:45 +01:00
special #72 2018-02-28 22:42:45 +01:00
spektrum #72 2018-02-28 22:42:45 +01:00
video #72 2018-02-28 22:42:45 +01:00
video_fullscreen #72 2018-02-28 22:42:45 +01:00
bower.json added missing vimeo urls to existing talks 2017-01-22 18:36:33 +01:00
feed.json #72 2018-02-28 22:42:45 +01:00
feed.xml #72 2018-02-28 22:42:45 +01:00
Gemfile
Gemfile.lock
index.html #72 2018-02-28 22:42:45 +01:00
README.md

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