38 lines
687 B
Markdown
38 lines
687 B
Markdown
# Scopesessions website
|
|
|
|
scopesessions.org
|
|
|
|
* Built with Jekyll
|
|
* 1.0.0
|
|
* [Learn Markdown](https://bitbucket.org/tutorials/markdowndemo)
|
|
|
|
### Development
|
|
|
|
```
|
|
git clone https://bitbucket.org/acorbi/scopesessions.org.git
|
|
```
|
|
* Install dependencies
|
|
```
|
|
gem install bundler
|
|
bundle install
|
|
```
|
|
* Serve files
|
|
```
|
|
bundle exec jekyll serve
|
|
# Serve starts a small webserver with your site on http://localhost:4000 for testing
|
|
```
|
|
* Build files
|
|
```
|
|
bundle exec jekyll build
|
|
# Build generates the HTML/JS/CSS into _site/
|
|
```
|
|
* Commit/Push changes to master.
|
|
```
|
|
git add --all .
|
|
git commit -m "Changed this and that"
|
|
git push
|
|
```
|
|
|
|
### Deployment
|
|
|
|
* Contact a.corbi@gmail.com
|