scopesessions.org/_site
Kiritan Flux 05cf48534a Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org
# Conflicts:
#	_posts/session/2018-11-08-077.markdown
#	_site/about/index.html
#	_site/artists/index.html
#	_site/feed.json
#	_site/feed.xml
#	_site/index.html
#	_site/newsletter_content/index.html
#	_site/session/2018/11/08/077.html
#	_site/video/index.html
#	_site/video_fullscreen/index.html
2018-12-05 13:12:01 +01:00
..
about Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2018-12-05 13:12:01 +01:00
artists Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2018-12-05 13:12:01 +01:00
assets 7th birthday 2018-06-07 22:56:05 +02:00
bower_components fix 2018-12-05 13:10:14 +01:00
call-for-talks #78 2018-12-03 22:30:25 +01:00
css supporting spektrum and specials 2017-03-04 22:02:51 +01:00
event-special/2012/06/01 #78 2018-12-03 22:30:25 +01:00
images fix 2018-12-05 13:10:14 +01:00
join-our-team #78 2018-12-03 22:30:25 +01:00
js outsourced video related JS, fixed CSS things, added visualberlinFestival videos 2017-01-27 11:29:45 +01:00
newsletter_content Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2018-12-05 13:12:01 +01:00
session Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2018-12-05 13:12:01 +01:00
special #78 2018-12-03 22:30:25 +01:00
spektrum #78 2018-12-03 22:30:25 +01:00
video Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2018-12-05 13:12:01 +01:00
video_fullscreen Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2018-12-05 13:12:01 +01:00
bower.json added missing vimeo urls to existing talks 2017-01-22 18:36:33 +01:00
feed.json Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2018-12-05 13:12:01 +01:00
feed.xml Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2018-12-05 13:12:01 +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 Merge branch 'master' of https://bitbucket.org/acorbi/scopesessions.org 2018-12-05 13:12:01 +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