-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from oliverpatrick/version-2
Version 2
- Loading branch information
Showing
164 changed files
with
32,177 additions
and
15,444 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"image": "mcr.microsoft.com/vscode/devcontainers/javascript-node:20", | ||
"hostRequirements": { | ||
"memory": "8gb" | ||
}, | ||
"waitFor": "onCreateCommand", | ||
"updateContentCommand": "yarn", | ||
"postCreateCommand": "", | ||
"postAttachCommand": "yarn dev", | ||
"customizations": { | ||
"codespaces": { | ||
"openFiles": ["data/blog/code-sample.mdx"] | ||
}, | ||
"vscode": { | ||
"settings": { | ||
"editor.formatOnSave": true | ||
}, | ||
"extensions": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] | ||
} | ||
}, | ||
"portsAttributes": { | ||
"3000": { | ||
"label": "Nextjs server", | ||
"onAutoForward": "openPreview" | ||
} | ||
}, | ||
"forwardPorts": [3000] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,31 @@ | ||
NEXT_PUBLIC_APIKEY= | ||
NEXT_PUBLIC_AUTHDOMAIN= | ||
NEXT_PUBLIC_PROJECTID= | ||
NEXT_PUBLIC_STORAGEBUCKET= | ||
NEXT_PUBLIC_MESSAGINGSENDERID= | ||
NEXT_PUBLIC_APPID= | ||
NEXT_PUBLIC_MEASUREMENTID= | ||
# visit https://giscus.app to get your Giscus ids | ||
NEXT_PUBLIC_GISCUS_REPO= | ||
NEXT_PUBLIC_GISCUS_REPOSITORY_ID= | ||
NEXT_PUBLIC_GISCUS_CATEGORY= | ||
NEXT_PUBLIC_GISCUS_CATEGORY_ID= | ||
NEXT_PUBLIC_UTTERANCES_REPO= | ||
NEXT_PUBLIC_DISQUS_SHORTNAME= | ||
|
||
|
||
MAILCHIMP_API_KEY= | ||
MAILCHIMP_API_SERVER= | ||
MAILCHIMP_AUDIENCE_ID= | ||
|
||
BUTTONDOWN_API_KEY= | ||
|
||
CONVERTKIT_API_KEY= | ||
# curl https://api.convertkit.com/v3/forms?api_key=<your_public_api_key> to get your form ID | ||
CONVERTKIT_FORM_ID= | ||
|
||
KLAVIYO_API_KEY= | ||
KLAVIYO_LIST_ID= | ||
|
||
REVUE_API_KEY= | ||
|
||
# Create EmailOctopus API key at https://emailoctopus.com/api-documentation | ||
EMAILOCTOPUS_API_KEY= | ||
# List ID can be found in the URL as a UUID after clicking a list on https://emailoctopus.com/lists | ||
# or the settings page of your list https://emailoctopus.com/lists/{UUID}/settings | ||
EMAILOCTOPUS_LIST_ID= | ||
|
||
GITHUB_TOKEN= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
node_modules | ||
.next | ||
.eslintrc.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
module.exports = { | ||
root: true, | ||
parser: '@typescript-eslint/parser', | ||
env: { | ||
browser: true, | ||
amd: true, | ||
node: true, | ||
es6: true, | ||
}, | ||
plugins: ['@typescript-eslint'], | ||
extends: [ | ||
'eslint:recommended', | ||
'plugin:@typescript-eslint/eslint-recommended', | ||
'plugin:@typescript-eslint/recommended', | ||
'plugin:jsx-a11y/recommended', | ||
'plugin:prettier/recommended', | ||
'next', | ||
'next/core-web-vitals', | ||
], | ||
parserOptions: { | ||
project: true, | ||
tsconfigRootDir: __dirname, | ||
}, | ||
rules: { | ||
'prettier/prettier': 'error', | ||
'react/react-in-jsx-scope': 'off', | ||
'jsx-a11y/anchor-is-valid': [ | ||
'error', | ||
{ | ||
components: ['Link'], | ||
specialLink: ['hrefLeft', 'hrefRight'], | ||
aspects: ['invalidHref', 'preferButton'], | ||
}, | ||
], | ||
'react/prop-types': 0, | ||
'@typescript-eslint/no-unused-vars': 0, | ||
'react/no-unescaped-entities': 0, | ||
'@typescript-eslint/explicit-module-boundary-types': 'off', | ||
'@typescript-eslint/no-var-requires': 'off', | ||
'@typescript-eslint/ban-ts-comment': 'off', | ||
'jsx-a11y/media-has-caption': 0, | ||
'@typescript-eslint/no-explicit-any': 1, | ||
}, | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,202 @@ | ||
## Source: https://github.com/alexkaratarakis/gitattributes | ||
## Modified * text=auto to * text=auto eol=lf eol=lf to force LF endings. | ||
|
||
## GITATTRIBUTES FOR WEB PROJECTS | ||
# | ||
# These settings are for any web project. | ||
# | ||
# Details per file setting: | ||
# text These files should be normalized (i.e. convert CRLF to LF). | ||
# binary These files are binary and should be left untouched. | ||
# | ||
# Note that binary is a macro for -text -diff. | ||
###################################################################### | ||
|
||
# Auto detect | ||
## Force LF line endings automatically for files detected as | ||
## text and leave all files detected as binary untouched. | ||
## This will handle all files NOT defined below. | ||
* text=auto eol=lf | ||
|
||
# Source code | ||
*.bash text eol=lf | ||
*.bat text eol=crlf | ||
*.cmd text eol=crlf | ||
*.coffee text | ||
*.css text | ||
*.htm text diff=html | ||
*.html text diff=html | ||
*.inc text | ||
*.ini text | ||
*.js text | ||
*.json text | ||
*.jsx text | ||
*.less text | ||
*.ls text | ||
*.map text -diff | ||
*.od text | ||
*.onlydata text | ||
*.php text diff=php | ||
*.pl text | ||
*.ps1 text eol=crlf | ||
*.py text diff=python | ||
*.rb text diff=ruby | ||
*.sass text | ||
*.scm text | ||
*.scss text diff=css | ||
*.sh text eol=lf | ||
*.sql text | ||
*.styl text | ||
*.tag text | ||
*.ts text | ||
*.tsx text | ||
*.xml text | ||
*.xhtml text diff=html | ||
|
||
# Docker | ||
Dockerfile text | ||
|
||
# Documentation | ||
*.ipynb text | ||
*.markdown text | ||
*.md text | ||
*.mdwn text | ||
*.mdown text | ||
*.mkd text | ||
*.mkdn text | ||
*.mdtxt text | ||
*.mdtext text | ||
*.txt text | ||
AUTHORS text | ||
CHANGELOG text | ||
CHANGES text | ||
CONTRIBUTING text | ||
COPYING text | ||
copyright text | ||
*COPYRIGHT* text | ||
INSTALL text | ||
license text | ||
LICENSE text | ||
NEWS text | ||
readme text | ||
*README* text | ||
TODO text | ||
|
||
# Templates | ||
*.dot text | ||
*.ejs text | ||
*.haml text | ||
*.handlebars text | ||
*.hbs text | ||
*.hbt text | ||
*.jade text | ||
*.latte text | ||
*.mustache text | ||
*.njk text | ||
*.phtml text | ||
*.tmpl text | ||
*.tpl text | ||
*.twig text | ||
*.vue text | ||
|
||
# Configs | ||
*.cnf text | ||
*.conf text | ||
*.config text | ||
.editorconfig text | ||
.env text | ||
.gitattributes text | ||
.gitconfig text | ||
.htaccess text | ||
*.lock text -diff | ||
package-lock.json text -diff | ||
*.toml text | ||
*.yaml text | ||
*.yml text | ||
browserslist text | ||
Makefile text | ||
makefile text | ||
|
||
# Heroku | ||
Procfile text | ||
|
||
# Graphics | ||
*.ai binary | ||
*.bmp binary | ||
*.eps binary | ||
*.gif binary | ||
*.gifv binary | ||
*.ico binary | ||
*.jng binary | ||
*.jp2 binary | ||
*.jpg binary | ||
*.jpeg binary | ||
*.jpx binary | ||
*.jxr binary | ||
*.pdf binary | ||
*.png binary | ||
*.psb binary | ||
*.psd binary | ||
# SVG treated as an asset (binary) by default. | ||
*.svg text | ||
# If you want to treat it as binary, | ||
# use the following line instead. | ||
# *.svg binary | ||
*.svgz binary | ||
*.tif binary | ||
*.tiff binary | ||
*.wbmp binary | ||
*.webp binary | ||
|
||
# Audio | ||
*.kar binary | ||
*.m4a binary | ||
*.mid binary | ||
*.midi binary | ||
*.mp3 binary | ||
*.ogg binary | ||
*.ra binary | ||
|
||
# Video | ||
*.3gpp binary | ||
*.3gp binary | ||
*.as binary | ||
*.asf binary | ||
*.asx binary | ||
*.fla binary | ||
*.flv binary | ||
*.m4v binary | ||
*.mng binary | ||
*.mov binary | ||
*.mp4 binary | ||
*.mpeg binary | ||
*.mpg binary | ||
*.ogv binary | ||
*.swc binary | ||
*.swf binary | ||
*.webm binary | ||
|
||
# Archives | ||
*.7z binary | ||
*.gz binary | ||
*.jar binary | ||
*.rar binary | ||
*.tar binary | ||
*.zip binary | ||
|
||
# Fonts | ||
*.ttf binary | ||
*.eot binary | ||
*.otf binary | ||
*.woff binary | ||
*.woff2 binary | ||
|
||
# Executables | ||
*.exe binary | ||
*.pyc binary | ||
|
||
# RC files (like .babelrc or .eslintrc) | ||
*.*rc text | ||
|
||
# Ignore files (like .npmignore or .gitignore) | ||
*.*ignore text |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# These are supported funding model platforms | ||
|
||
github: timlrx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: bug | ||
assignees: '' | ||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
|
||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**System Info (if dev / build issue):** | ||
|
||
- OS: [e.g. iOS] | ||
- Node version (please ensure you are using 18+) | ||
- Npm version | ||
|
||
**Browser Info (if display / formatting issue):** | ||
|
||
- Device [e.g. Desktop, iPhone6] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
Oops, something went wrong.