Skip to content

Commit d183adf

Browse files
initial commit by Stackbit
0 parents  commit d183adf

File tree

2,456 files changed

+1271812
-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.

2,456 files changed

+1271812
-0
lines changed

.env

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
GATSBY_ALGOLIA_APP_ID='BAGY237H21'
2+
GATSBY_ALGOLIA_SEARCH_KEY='5f5a2d1bb109c79803ca95250ca3496c'
3+
ALGOLIA_ADMIN_KEY='a618cbd2bff788d0f9d73b48867b99eb'

.eslintrc.json

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"env": {
3+
"node": true,
4+
"es6": true
5+
},
6+
"extends": "eslint:recommended",
7+
"parserOptions": {
8+
"ecmaVersion": 2018
9+
},
10+
"rules": {
11+
"indent": ["error", 4],
12+
"linebreak-style": ["error", "unix"],
13+
"quotes": ["error", "single"],
14+
"semi": ["error", "always"],
15+
"no-unused-vars": 0
16+
}
17+
}

.gitattributes

+82
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# Common settings that generally should always be used with your language specific settings
2+
3+
4+
*.html linguist-vendored=true
5+
*.ipynb linguist-vendored=true
6+
7+
# Linguist::FileBlob.new("./*.html").vendored? # => true
8+
# Auto detect text files and perform LF normalization
9+
# https://www.davidlaing.com/2012/09/19/customise-your-gitattributes-to-become-a-git-ninja/
10+
* text=auto
11+
12+
#
13+
# The above will handle all files NOT found below
14+
#
15+
16+
# Documents
17+
*.bibtex text diff=bibtex
18+
*.doc diff=astextplain
19+
*.DOC diff=astextplain
20+
*.docx diff=astextplain
21+
*.DOCX diff=astextplain
22+
*.dot diff=astextplain
23+
*.DOT diff=astextplain
24+
*.pdf diff=astextplain
25+
*.PDF diff=astextplain
26+
*.rtf diff=astextplain
27+
*.RTF diff=astextplain
28+
*.md text diff=markdown
29+
*.tex text diff=tex
30+
*.adoc text
31+
*.textile text
32+
*.mustache text
33+
*.csv text
34+
*.tab text
35+
*.tsv text
36+
*.txt text
37+
*.sql text
38+
*.ps1 text eol=crlf
39+
40+
# Graphics
41+
*.png binary
42+
*.jpg binary
43+
*.jpeg binary
44+
*.gif binary
45+
*.tif binary
46+
*.tiff binary
47+
*.ico binary
48+
# SVG treated as an asset (binary) by default.
49+
*.svg text
50+
# If you want to treat it as binary,
51+
# use the following line instead.
52+
# *.svg binary
53+
*.eps binary
54+
55+
# Scripts
56+
*.bash text eol=lf
57+
*.fish text eol=lf
58+
*.sh text eol=lf
59+
# These are explicitly windows files and should use crlf
60+
*.bat text eol=crlf
61+
*.cmd text eol=crlf
62+
63+
# Serialisation
64+
*.json text
65+
*.toml text
66+
*.xml text
67+
*.yaml text
68+
*.yml text
69+
70+
# Archives
71+
*.7z binary
72+
*.gz binary
73+
*.tar binary
74+
*.tgz binary
75+
*.zip binary
76+
77+
# Text files where line endings should be preserved
78+
*.patch -text
79+
80+
#
81+
# Exclude files from exporting
82+
#

.github/ISSUE_TEMPLATE/bug_report.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
---
8+
9+
**Describe the bug**
10+
A clear and concise description of what the bug is.
11+
12+
**To Reproduce**
13+
Steps to reproduce the behavior:
14+
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+
**Desktop (please complete the following information):**
27+
28+
- OS: [e.g. iOS]
29+
- Browser [e.g. chrome, safari]
30+
- Version [e.g. 22]
31+
32+
**Smartphone (please complete the following information):**
33+
34+
- Device: [e.g. iPhone6]
35+
- OS: [e.g. iOS8.1]
36+
- Browser [e.g. stock browser, safari]
37+
- Version [e.g. 22]
38+
39+
**Additional context**
40+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/custom.md

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

.gitignore

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

.gitpod.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
tasks:
2+
- init: npm install && npm run build && make
3+
command: npm run start

.markdownlint.json

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"default": true,
3+
"MD026/":false,
4+
"MD013": false,
5+
"MD033":false,
6+
"MD02":false,
7+
"MD024":false,
8+
"MD030":false,
9+
"MD022":false,
10+
"MD001":false,
11+
"MD003":false,
12+
"MD029": false,
13+
"MD007": { "indent": 4 },
14+
"no-hard-tabs": false
15+
}

.netlify/state.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"siteId": "a1b7ee1a-11a7-4bd2-a341-2260656e216f"
3+
}

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "engines" : { "node" : ">=0.15" } }

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
14.15.0
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
[
2+
{
3+
"label": "Flask",
4+
"importPath": "flask",
5+
"description": "flask",
6+
"isExtraImport": true,
7+
"detail": "flask",
8+
"documentation": {}
9+
},
10+
{
11+
"label": "render_template",
12+
"importPath": "flask",
13+
"description": "flask",
14+
"isExtraImport": true,
15+
"detail": "flask",
16+
"documentation": {}
17+
},
18+
{
19+
"label": "request",
20+
"importPath": "flask",
21+
"description": "flask",
22+
"isExtraImport": true,
23+
"detail": "flask",
24+
"documentation": {}
25+
},
26+
{
27+
"label": "form",
28+
"kind": 2,
29+
"importPath": "docs.content.learning-area.html.forms.sending-form-data.python-example",
30+
"description": "docs.content.learning-area.html.forms.sending-form-data.python-example",
31+
"peekOfCode": "def form():\n return render_template(\"form.html\")\n@app.route(\"/hello\", methods=[\"GET\", \"POST\"])\ndef hello():\n return render_template(\"greeting.html\",\n say=request.form[\"say\"],\n to=request.form[\"to\"])\nif __name__ == \"__main__\":\n app.run()",
32+
"detail": "docs.content.learning-area.html.forms.sending-form-data.python-example",
33+
"documentation": {}
34+
},
35+
{
36+
"label": "hello",
37+
"kind": 2,
38+
"importPath": "docs.content.learning-area.html.forms.sending-form-data.python-example",
39+
"description": "docs.content.learning-area.html.forms.sending-form-data.python-example",
40+
"peekOfCode": "def hello():\n return render_template(\"greeting.html\",\n say=request.form[\"say\"],\n to=request.form[\"to\"])\nif __name__ == \"__main__\":\n app.run()",
41+
"detail": "docs.content.learning-area.html.forms.sending-form-data.python-example",
42+
"documentation": {}
43+
},
44+
{
45+
"label": "app",
46+
"kind": 5,
47+
"importPath": "docs.content.learning-area.html.forms.sending-form-data.python-example",
48+
"description": "docs.content.learning-area.html.forms.sending-form-data.python-example",
49+
"peekOfCode": "app = Flask(__name__)\n@app.route(\"/\", methods=[\"GET\", \"POST\"])\ndef form():\n return render_template(\"form.html\")\n@app.route(\"/hello\", methods=[\"GET\", \"POST\"])\ndef hello():\n return render_template(\"greeting.html\",\n say=request.form[\"say\"],\n to=request.form[\"to\"])\nif __name__ == \"__main__\":",
50+
"detail": "docs.content.learning-area.html.forms.sending-form-data.python-example",
51+
"documentation": {}
52+
}
53+
]

.vscode/settings.json

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"files.exclude": {
3+
"**/.git": false
4+
},
5+
"search.useGlobalIgnoreFiles": true,
6+
"search.useIgnoreFiles": false,
7+
"python.pythonPath": "/bin/python3",
8+
"liveServer.settings.port": 5501
9+
}

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2021 Bryan C Guner
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

0 commit comments

Comments
 (0)