Skip to content

Commit bf12116

Browse files
committed
Initial Commit
0 parents  commit bf12116

Some content is hidden

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

78 files changed

+8080
-0
lines changed

.editorconfig

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[*]
2+
charset = utf-8
3+
indent_style = space
4+
indent_size = 2
5+
end_of_line = lf
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true

.env.example

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# ------------------------------------------------------------------------------
2+
# This is an example .env file.
3+
#
4+
# All of these environment vars must be defined either in your environment or in
5+
# a local .env file in order to run this app.
6+
#
7+
# @see https://github.com/rolodato/dotenv-safe for more details.
8+
# ------------------------------------------------------------------------------
9+
10+
# Optional (for fathom analytics)
11+
#NEXT_PUBLIC_FATHOM_ID=
12+
13+
# Optional (for PostHog analytics)
14+
#NEXT_PUBLIC_POSTHOG_ID=
15+
16+
# Optional (for rendering tweets more efficiently)
17+
#TWITTER_ACCESS_TOKEN=
18+
19+
# Optional (for persisting preview images to redis)
20+
# NOTE: if you want to enable redis, only REDIS_HOST and REDIS_PASSWORD are required
21+
# NOTE: don't forget to set isRedisEnabled to true in the site.config.ts file
22+
#REDIS_HOST=
23+
#REDIS_PASSWORD=
24+
#REDIS_USER='default'
25+
#REDIS_NAMESPACE='preview-images'

.eslintrc.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"plugins": ["@typescript-eslint", "react", "react-hooks"],
5+
"extends": [
6+
"eslint:recommended",
7+
"plugin:@typescript-eslint/recommended",
8+
"plugin:react/recommended",
9+
"plugin:react-hooks/recommended",
10+
"prettier"
11+
],
12+
"settings": {
13+
"react": {
14+
"version": "detect"
15+
}
16+
},
17+
"env": {
18+
"browser": true,
19+
"node": true
20+
},
21+
"rules": {
22+
"@typescript-eslint/no-explicit-any": 0,
23+
"@typescript-eslint/no-non-null-assertion": 0,
24+
"@typescript-eslint/no-unused-vars": 2,
25+
"react/prop-types": 0
26+
}
27+
}

.github/funding.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [transitive-bullshit]

.github/issue_template.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#### Description
2+
3+
<!--
4+
Please include as detailed of a description as possible, including screenshots if applicable.
5+
-->
6+
7+
#### Notion Test Page ID
8+
9+
<!--
10+
Please include the ID of at least one publicly accessible Notion page related to your issue.
11+
12+
This is extremely helpful for us to debug and fix issues.
13+
14+
Thanks!
15+
-->

.github/pull_request_template.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#### Description
2+
3+
<!--
4+
Please include as detailed of a description as possible, including screenshots if applicable.
5+
-->
6+
7+
#### Notion Test Page ID
8+
9+
<!--
10+
Please include the ID of at least one publicly accessible Notion page related to your PR.
11+
12+
This is extremely helpful for us to debug and fix issues.
13+
14+
Thanks!
15+
-->

.github/workflows/build.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Build
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
Build:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v2
10+
11+
- uses: actions/setup-node@v2
12+
with:
13+
node-version: 16
14+
cache: yarn
15+
16+
- run: yarn install --frozen-lockfile
17+
- name: build
18+
# TODO Enable those lines below if you use a Redis cache, you'll also need to configure GitHub Repository Secrets
19+
# env:
20+
# REDIS_HOST: ${{ secrets.REDIS_HOST }}
21+
# REDIS_PASSWORD: ${{ secrets.REDIS_PASSWORD }}
22+
run: yarn build

.gitignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# ide
23+
.idea
24+
25+
# debug
26+
npm-debug.log*
27+
yarn-debug.log*
28+
yarn-error.log*
29+
30+
# local env files
31+
.env
32+
.env.local
33+
.env.build
34+
.env.development.local
35+
.env.test.local
36+
.env.production.local
37+
38+
# vercel
39+
.vercel

.prettierignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.snapshots/
2+
build/
3+
dist/
4+
node_modules/
5+
.next/
6+
.vercel/
7+
8+
.demo/
9+
.renderer/

.prettierrc

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"singleQuote": true,
3+
"jsxSingleQuote": true,
4+
"semi": false,
5+
"useTabs": false,
6+
"tabWidth": 2,
7+
"bracketSpacing": true,
8+
"bracketSameLine": false,
9+
"arrowParens": "always",
10+
"trailingComma": "none"
11+
}

0 commit comments

Comments
 (0)