Skip to content

Commit 808b445

Browse files
authored
Merge pull request #1 from IBM/Release-Jul-2021
Release jul 2021
2 parents b026b17 + b6faafd commit 808b445

Some content is hidden

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

63 files changed

+27854
-202
lines changed

.editorconfig

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
trim_trailing_whitespace = true
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 2

.env.local

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SITE_PREFIX="/"

.env.production

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
SITE_PREFIX="/wh-spm-performance/spm-performance-tuning/"

.gitignore

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
_book
2+
*.html
3+
4+
/ci.*
5+
*.lock
6+
*.tgz
7+
tls.crt
8+
tls.key
9+
*-stage
10+
*!test.txt
11+
.gradle
12+
*.jar
13+
*.zip
14+
*.swp
15+
.classpath
16+
.project
17+
/Release-*
18+
#GATSBY
19+
# Logs
20+
logs
21+
*.log
22+
npm-debug.log*
23+
yarn-debug.log*
24+
yarn-error.log*
25+
26+
# Runtime data
27+
pids
28+
*.pid
29+
*.seed
30+
*.pid.lock
31+
32+
# Directory for instrumented libs generated by jscoverage/JSCover
33+
lib-cov
34+
35+
# Coverage directory used by tools like istanbul
36+
coverage
37+
38+
# nyc test coverage
39+
.nyc_output
40+
41+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
42+
.grunt
43+
44+
# Bower dependency directory (https://bower.io/)
45+
bower_components
46+
47+
# node-waf configuration
48+
.lock-wscript
49+
50+
# Compiled binary addons (http://nodejs.org/api/addons.html)
51+
build/Release
52+
53+
# Dependency directories
54+
node_modules/
55+
jspm_packages/
56+
57+
# Typescript v1 declaration files
58+
typings/
59+
60+
# Optional npm cache directory
61+
.npm
62+
63+
# Optional eslint cache
64+
.eslintcache
65+
66+
# Optional REPL history
67+
.node_repl_history
68+
69+
# Output of 'npm pack'
70+
*.tgz
71+
72+
# dotenv environment variables file
73+
.env
74+
75+
# gatsby files
76+
.cache/
77+
public
78+
79+
# Mac files
80+
.DS_Store
81+
82+
# Yarn
83+
yarn-error.log
84+
.pnp/
85+
.pnp.js
86+
87+
# Yarn Integrity file
88+
.yarn-integrity
89+
!package-lock.json
90+
buildlogs

.markdownlint.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"MD003": { "style": "atx" },
3+
"MD007": { "indent": 2 },
4+
"MD010": false,
5+
"MD013": { "line_length": 300, "tables": false },
6+
"MD026": false,
7+
"MD028": false,
8+
"MD033": false,
9+
"MD040": false,
10+
"no-trailing-spaces": true,
11+
"MD024": { "siblings_only": true}
12+
}

.markdownlintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
src/pages/index.mdx
2+
node_modules/

.travis.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
language: node_js
2+
node_js:
3+
- "12"
4+
5+
group: bluezone
6+
dist: xenial
7+
8+
install:
9+
- npm install -g markdownlint-cli
10+
- npm ci
11+
- pip install --user linkchecker
12+
- sed -i "s/TRAVIS_HOST/$(hostname -f)/" linkcheckerrc
13+
14+
script:
15+
- markdownlint **/*.mdx
16+
- npm run build
17+
- docker run --rm -d --name gatsby -p 8888:80 -v $(pwd)/public:/usr/local/apache2/htdocs$SITE_PREFIX httpd:2.4
18+
#- linkchecker http://$(hostname -f):8888$SITE_PREFIX --config=./linkcheckerrc
19+
20+
deploy:
21+
- provider: pages
22+
skip_cleanup: true
23+
local_dir: public
24+
github_token: $GITHUB_TOKEN
25+
github_url: github.com
26+
committer_from_gh: true
27+
target_branch: gh-pages
28+
on:
29+
branch: master

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file
4+
5+
## v21.7.0
6+
7+
### Added
8+
9+
* The existing IBM Cúram Social Program Management tuning guide is now available on Github, alongside the introduction of new tuning configurations for SPM on Kubernetes

0 commit comments

Comments
 (0)