No description
|
|
||
|---|---|---|
| _includes | ||
| _layouts | ||
| _plugins | ||
| _posts | ||
| _sass | ||
| _site | ||
| assets | ||
| css | ||
| images | ||
| js | ||
| .gitignore | ||
| 1_callfortalks.html | ||
| 2_artists.html | ||
| 3_about.html | ||
| 4_newsletter_content.html | ||
| 5_spektrum.html | ||
| 6_video.html | ||
| 7_video_no_header_or_footer.html | ||
| _config.yml | ||
| bower.json | ||
| feed.json | ||
| feed.xml | ||
| Gemfile | ||
| Gemfile.lock | ||
| index.html | ||
| README.md | ||
Scopesessions website
scopesessions.org
- Built with Jekyll
- 1.0.0
- Learn Markdown
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