Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge pull request#2619from bgoonz/backup #2625

Merged
merged 13 commits into from
Jun 21, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
root = true

[*]
tab_width = 4
indent_size = 4
charset = utf-8
end_of_line = lf
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true

[*.txt]
indent_size = false

[test/fast/Listing versions/Running 'nvm ls' calls into nvm_alias]
indent_size = false

[test/fast/Listing versions/Running 'nvm ls --no-alias' does not call into nvm_alias]
indent_size = false

[test/fast/Unit tests/mocks/**]
insert_final_newline = off

[test/**/.urchin*]
insert_final_newline = off

[Makefile]
indent_style = tab
5 changes: 5 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ALGOLIA_ADMIN_KEY='a618cbd2bff788d0f9d73b48867b99eb'
ALGOLIA_API_KEY='56747001d363aa353aea93c8a205f40ddae5455e65f8577e3761754016d0ee21'
ALGOLIA_BASE_URL='https://crawler.algolia.com'
ONEGRAPH_AUTHLIFY_TOKEN='i1-IEDTFTYEYPJbb_TNymTGLvPCdjsGRP1PwtxZg14Q'
stackbitapikey='d65cdb563ef2906544c747c36adc22d28dea087a86d8200b7784258ad9c5b0b5'
17 changes: 17 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"env": {
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 2018
},
"rules": {
"indent": ["error", 4],
"linebreak-style": ["error", "unix"],
"quotes": ["error", "single"],
"semi": ["error", "always"],
"no-unused-vars": 0
}
}
45 changes: 44 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,54 +1,97 @@
*.vscide/






















# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
# node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# dotenv environment variables file


# gatsby files
# .cache/
# public

# Mac files
.DS_Store

# Yarn
yarn-error.log
.pnp/
.pnp.js
# Yarn Integrity file
.yarn-integrity

node_modules/


*.cache
*public
8 changes: 8 additions & 0 deletions .graphqlrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"schema": [
"./functions/netlifyGraph/netlifyGraphSchema.graphql"
],
"schemaPath": [
"./functions/netlifyGraph/netlifyGraphSchema.graphql"
]
}
1 change: 1 addition & 0 deletions .netlify/edge-functions-import-map.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"imports":{"netlify:edge":"https://edge-bootstrap.netlify.app/v1/index.ts"}}
11 changes: 11 additions & 0 deletions .netlify/state.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"siteId": "a1b7ee1a-11a7-4bd2-a341-2260656e216f",
"oneGraphSessionId": "937b1344-1df2-48d0-8935-3e68ba16a9b2",
"oneGraphEnabledServices": [
"GITHUB",
"NPM",
"SALESFORCE",
"SPOTIFY",
"STRIPE"
]
}
Empty file added .npmignore
Empty file.
Loading