No description
Find a file
Kiritan Flux dd2ede5e20 frr
2018-10-10 17:05:14 +02:00
_includes fixing urls 2017-05-23 16:56:24 +02:00
_layouts fixing urls 2017-05-23 16:56:24 +02:00
_plugins resizing images for better performance 2016-06-12 17:46:27 +02:00
_posts fix vimeo 2018-10-10 17:04:00 +02:00
_sass First commit 2014-11-30 23:17:02 +01:00
_site frr 2018-10-10 17:05:14 +02:00
assets 7th birthday 2018-06-07 22:56:05 +02:00
css supporting spektrum and specials 2017-03-04 22:02:51 +01:00
images Session #76 2018-10-10 14:16:55 +02:00
js outsourced video related JS, fixed CSS things, added visualberlinFestival videos 2017-01-27 11:29:45 +01:00
.gitignore Adding bower_components to _site, they wont be gitignored 2015-04-16 12:30:59 +02:00
1_callfortalks.html making upcoming session more visible 2015-09-01 21:52:43 +02:00
2_artists.html making upcoming session more visible 2015-09-01 21:52:43 +02:00
3_about.html added session 75 and changed about 2018-09-11 13:00:14 +02:00
4_newsletter_content.html Fixed encoding issues with newsletter generation 2015-06-05 09:05:39 +02:00
5_spektrum.html added spektrum 2016-06-26 21:22:04 +02:00
6_video.html enabling video section in header 2017-01-28 10:17:30 +01:00
7_video_no_header_or_footer.html outsourced video related JS, fixed CSS things, added visualberlinFestival videos 2017-01-27 11:29:45 +01:00
8_join_our_team.html added join our team page 2018-01-12 14:29:14 +01:00
_config.yml adding GA 2017-01-13 12:52:27 +01:00
bower.json install bower component 'isotope' 2017-01-21 11:05:32 +01:00
feed.json added topics to feed.json 2017-01-06 13:10:23 +01:00
feed.xml Fixed front matter 2015-02-13 18:17:53 +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 #69 2017-10-30 12:30:20 +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