-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
85 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
_site | ||
.sass-cache | ||
.jekyll-metadata | ||
Gemfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
language: ruby | ||
rvm: | ||
- 2.4.1 | ||
jdk: | ||
- openjdk7 | ||
|
||
before_script: | ||
- chmod +x ./script/cibuild | ||
- chmod +x deploy | ||
|
||
script: ./script/cibuild | ||
|
||
env: | ||
global: | ||
- NOKOGIRI_USE_SYSTEM_LIBRARIES=true # speeds up installation of html-proofer | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- libcurl4-openssl-dev | ||
|
||
sudo: false # route your build to the container-based infrastructure for a faster build | ||
|
||
cache: bundler # caching bundler gem packages will speed up build | ||
|
||
# Optional: disable email notifications about the outcome of your builds | ||
notifications: | ||
email: false | ||
|
||
deploy: | ||
provider: script | ||
script: bash deploy | ||
skip_cleanup: true | ||
on: | ||
tags: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Site wiki.adire.eu.com | ||
|
||
[![Build Status](https://travis-ci.org/fauguste/wiki.adire.eu.com.svg?branch=master)](https://travis-ci.org/fauguste/wiki.adire.eu.com) | ||
|
||
## Prérequis | ||
|
||
[jekyll](https://jekyllrb.com/docs/installation/) | ||
|
||
## Lancer un serveur local | ||
```` | ||
bundle exec jekyll serve | ||
```` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ email: [email protected] | |
description: >- # this means to ignore newlines until "baseurl:" | ||
Bienvenue sur la base de connaissance de la société Adire. | ||
baseurl: "" # the subpath of your site, e.g. /blog | ||
url: "" # the base hostname & protocol for your site, e.g. http://example.com | ||
url: "https://wiki.adire.eu.com" # the base hostname & protocol for your site, e.g. http://example.com | ||
|
||
# Build settings | ||
markdown: kramdown | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
gem install s3_website | ||
s3_website push |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
User-agent: * | ||
Sitemap: https://wiki.adire.eu.com/sitemap.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
s3_id: <%= ENV['S3_ACCESS_KEY_ID'] %> | ||
s3_secret: <%= ENV['S3_SECRET_KEY'] %> | ||
s3_bucket: wiki.adire.eu.com | ||
|
||
max_age: 3000 | ||
cache_control: public, no-transform, max-age=1200, s-maxage=1200 | ||
|
||
ignore_on_server: | ||
- Readme.md | ||
- script | ||
- deploy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/env bash | ||
set -e # halt script on error | ||
|
||
gem install s3_website | ||
|
||
bundle exec jekyll build |