scopesessions.org/_site
Alex Corbi cdec3a2be5 #89
2020-02-01 14:23:20 +01:00
..
about #89 2020-02-01 14:23:20 +01:00
artists #89 2020-02-01 14:23:20 +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 #89 2020-02-01 14:23:20 +01:00
css supporting spektrum and specials 2017-03-04 22:02:51 +01:00
event-special/2012/06/01 #89 2020-02-01 14:23:20 +01:00
images #89 2020-02-01 14:23:20 +01:00
join-our-team #89 2020-02-01 14:23:20 +01:00
js outsourced video related JS, fixed CSS things, added visualberlinFestival videos 2017-01-27 11:29:45 +01:00
newsletter_content #89 2020-02-01 14:23:20 +01:00
session #89 2020-02-01 14:23:20 +01:00
special #89 2020-02-01 14:23:20 +01:00
spektrum #89 2020-02-01 14:23:20 +01:00
video #89 2020-02-01 14:23:20 +01:00
video_fullscreen #89 2020-02-01 14:23:20 +01:00
bower.json added missing vimeo urls to existing talks 2017-01-22 18:36:33 +01:00
deploy.sh #89 2020-02-01 14:23:20 +01:00
feed.json #89 2020-02-01 14:23:20 +01:00
feed.xml #89 2020-02-01 14:23:20 +01:00
Gemfile #89 2020-02-01 14:23:20 +01:00
Gemfile.lock #89 2020-02-01 14:23:20 +01:00
index.html #89 2020-02-01 14:23:20 +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