No description
Find a file
2015-06-05 09:05:39 +02:00
_includes Implemented dynamic generation of newsletter. 2015-04-24 16:00:48 +02:00
_layouts After state session 2015-04-14 11:57:13 +02:00
_plugins - changed order of upcoming talk 2015-04-24 18:48:20 +02:00
_posts updates for session 44 2015-06-05 09:01:12 +02:00
_sass First commit 2014-11-30 23:17:02 +01:00
_site Fixed encoding issues with newsletter generation 2015-06-05 09:05:39 +02:00
assets After state session 2015-04-14 11:57:13 +02:00
css - changed order of upcoming talk 2015-04-24 18:48:20 +02:00
images updates for session 44 2015-06-05 09:01:12 +02:00
js - changed order of upcoming talk 2015-04-24 18:48:20 +02:00
.gitignore Adding bower_components to _site, they wont be gitignored 2015-04-16 12:30:59 +02:00
1_callfortalks.html Implemented dynamic generation of newsletter. 2015-04-24 16:00:48 +02:00
2_artists.html Implemented dynamic generation of newsletter. 2015-04-24 16:00:48 +02:00
3_about.html Implemented dynamic generation of newsletter. 2015-04-24 16:00:48 +02:00
4_newsletter_content.html Fixed encoding issues with newsletter generation 2015-06-05 09:05:39 +02:00
_config.yml Fixed menu on mobile devices 2015-04-08 15:50:21 +02:00
bower.json Implementing facebook galleries 2015-02-13 21:11:03 +01:00
feed.xml Fixed front matter 2015-02-13 18:17:53 +01:00
index.html After state session 2015-04-14 11:57:13 +02:00
README.md Modified README.md 2015-04-16 13:29:02 +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
  • 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