scopesessions.org/_site
2019-11-01 10:38:49 +01:00
..
about added session 87 2019-11-01 10:38:49 +01:00
artists added session 87 2019-11-01 10:38:49 +01:00
assets added #80, updated sponsor logos in footer 2019-01-29 13:41:15 +01:00
bower_components #86 2019-09-30 10:44:43 +02:00
call-for-talks added session 87 2019-11-01 10:38:49 +01:00
css supporting spektrum and specials 2017-03-04 22:02:51 +01:00
event-special/2012/06/01 added session 87 2019-11-01 10:38:49 +01:00
images added session 87 2019-11-01 10:38:49 +01:00
join-our-team added session 87 2019-11-01 10:38:49 +01:00
js outsourced video related JS, fixed CSS things, added visualberlinFestival videos 2017-01-27 11:29:45 +01:00
newsletter_content added session 87 2019-11-01 10:38:49 +01:00
session added session 87 2019-11-01 10:38:49 +01:00
special added session 87 2019-11-01 10:38:49 +01:00
spektrum added session 87 2019-11-01 10:38:49 +01:00
video added session 87 2019-11-01 10:38:49 +01:00
video_fullscreen added session 87 2019-11-01 10:38:49 +01:00
bower.json added missing vimeo urls to existing talks 2017-01-22 18:36:33 +01:00
feed.json added session 87 2019-11-01 10:38:49 +01:00
feed.xml added session 87 2019-11-01 10:38:49 +01:00
Gemfile added session 87 2019-11-01 10:38:49 +01:00
Gemfile.lock added session 87 2019-11-01 10:38:49 +01:00
index.html added session 87 2019-11-01 10:38:49 +01:00
README.md removed Aude 2019-10-08 10:48:55 +02:00

Scopesessions website

scopesessions.org

Development

git clone https://acorbi@bitbucket.org/acorbi/scopesessions.org.git
  • Install dependencies
sudo apt-get install jekyll
sudo gem install bundle
sudo 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