No description
Find a file
2016-08-21 21:36:54 +02:00
_includes added spektrum 2016-06-26 21:22:04 +02:00
_layouts added spektrum 2016-06-26 21:22:04 +02:00
_plugins resizing images for better performance 2016-06-12 17:46:27 +02:00
_posts added spektrum 2016-06-26 21:43:19 +02:00
_sass First commit 2014-11-30 23:17:02 +01:00
_site new members 2016-08-21 21:36:54 +02:00
assets added spektrum 2016-06-26 21:22:04 +02:00
css #47 2015-09-16 21:01:58 +02:00
images added spektrum 2016-06-26 21:22:04 +02:00
js #47 2015-09-16 21:01:58 +02: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 new members 2016-08-21 21:36:54 +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
_config.yml added spektrum 2016-06-26 21:45:08 +02:00
bower.json #47 2015-09-16 21:01:58 +02:00
feed.xml Fixed front matter 2015-02-13 18:17:53 +01:00
Gemfile resizing images for better performance 2016-06-12 17:46:27 +02:00
Gemfile.lock resizing images for better performance 2016-06-12 17:46:27 +02:00
index.html added spektrum 2016-06-26 21:22:04 +02: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