Skip to content

Commit 11dfbb1

Browse files
committed
Add preliminary Empyrean documentation
1 parent 189e959 commit 11dfbb1

File tree

149 files changed

+616
-10146
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

149 files changed

+616
-10146
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@ _site/
22
.sass-cache/
33
.jekyll-metadata
44
_pdf
5-
.idea/
5+
.DS_Store
6+
.idea

.gitlab-ci.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
image: ruby:2.3
2+
3+
variables:
4+
JEKYLL_ENV: production
5+
6+
test:
7+
stage: test
8+
script:
9+
- sh ./var/build.sh
10+
- bundle exec jekyll build -d test
11+
artifacts:
12+
paths:
13+
- test
14+
except:
15+
- master
16+
17+
pages:
18+
stage: deploy
19+
script:
20+
- sh ./var/build.sh
21+
- bundle exec jekyll build -d public
22+
artifacts:
23+
paths:
24+
- public
25+
only:
26+
- master

.vscode/settings.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
// Place your settings in this file to overwrite default and user settings.
2+
{
3+
"files.associations": {
4+
"*.html": "liquid"
5+
}
6+
}

0 commit comments

Comments
 (0)