scopesessions.org/README.md
kflux 77c7bbf9fc removed Aude
updated README.md
2019-10-08 10:48:55 +02:00

967 B

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