Skip to content

Commit f4bfb76

Browse files
committed
Initial commit.
0 parents  commit f4bfb76

File tree

106 files changed

+4941
-0
lines changed

Some content is hidden

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

106 files changed

+4941
-0
lines changed

Diff for: .env.example

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
JEKYLL_GITHUB_USERNAME=<your-github-username>
2+
JEKYLL_GITHUB_TOKEN=<your-github-personal-access-token>

Diff for: .github/FUNDING.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
github: tijme
2+
custom: ['https://www.paypal.me/tijmegommers', 'https://bunq.me/tijme']

Diff for: .github/ISSUE_TEMPLATE/bug_report.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: Bug
6+
assignees: tijme
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Screenshots**
24+
If applicable, add screenshots to help explain your problem.
25+
26+
**Device (please complete the following information):**
27+
- Device: [e.g. iPhone6]
28+
- OS: [e.g. iOS8.1]
29+
- Version [e.g. 22]
30+
31+
**Additional context**
32+
Add any other context about the problem here.

Diff for: .github/ISSUE_TEMPLATE/feature_request.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: Feature request
6+
assignees: tijme
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

Diff for: .github/PULL_REQUEST_TEMPLATE.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# PR Details
2+
3+
<!--- Provide a general summary of your changes in the Title above -->
4+
5+
## Description
6+
7+
<!--- Describe your changes in detail -->
8+
9+
## Type of change
10+
11+
<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->
12+
13+
- [ ] Docs change / refactoring / dependency upgrade
14+
- [ ] Bug fix (non-breaking change which fixes an issue)
15+
- [ ] New feature (non-breaking change which adds functionality)
16+
- [ ] Breaking change (fix or feature that would cause existing functionality to change)
17+
18+
# Checklist:
19+
20+
<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
21+
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->
22+
23+
- [ ] My code follows the code style of this project.
24+
- [ ] My change generates no new warnings
25+
- [ ] My change requires a change to the documentation.
26+
- [ ] I have updated the documentation accordingly.
27+
- [ ] I have read the **CONTRIBUTING** document.

Diff for: .github/workflows/deploy.yml

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# Deploy static website to `gh-pages` branch
2+
name: pages-build
3+
4+
# Triggers for the workflow to run
5+
on:
6+
# Triggers the workflow on push or pull request events but only for the "master" branch
7+
push:
8+
branches: [ "master" ]
9+
pull_request:
10+
branches: [ "master" ]
11+
12+
# Allows you to run this workflow manually from the Actions tab
13+
workflow_dispatch:
14+
15+
# Jobs to run on trigger
16+
jobs:
17+
github-pages:
18+
runs-on: ubuntu-latest
19+
steps:
20+
21+
# Checkout the repository
22+
- uses: actions/checkout@v2
23+
24+
# Cache dependencies and build outputs
25+
- uses: actions/cache@v2
26+
with:
27+
path: vendor/bundle
28+
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile') }}
29+
restore-keys: |
30+
${{ runner.os }}-gems-
31+
32+
# Build static website
33+
- uses: helaili/jekyll-action@v2
34+
with:
35+
target_branch: 'gh-pages'
36+
token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)