Skip to content

Commit 20f4c7d

Browse files
committed
Init
0 parents  commit 20f4c7d

30 files changed

+4703
-0
lines changed

.env.example

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Since the ".env" file is gitignored, you can use the ".env.example" file to
2+
# build a new ".env" file when you clone the repo. Keep this file up-to-date
3+
# when you add new variables to `.env`.
4+
5+
# This file will be committed to version control, so make sure not to have any
6+
# secrets in it. If you are cloning this repo, create a copy of this file named
7+
# ".env" and populate it with your secrets.
8+
9+
# When adding additional environment variables, the schema in "/src/env.js"
10+
# should be updated accordingly.
11+
12+
# Prisma
13+
# https://www.prisma.io/docs/reference/database-reference/connection-urls#env
14+
DATABASE_URL="file:./db.sqlite"
15+
16+
# Next Auth
17+
# You can generate a new secret on the command line with:
18+
# openssl rand -base64 32
19+
# https://next-auth.js.org/configuration/options#secret
20+
# NEXTAUTH_SECRET=""
21+
NEXTAUTH_URL="http://localhost:3000"
22+
23+
# SMTP
24+
EMAIL_SERVER=smtp://username:[email protected]:587
25+

.eslintrc.cjs

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/** @type {import("eslint").Linter.Config} */
2+
const config = {
3+
parser: "@typescript-eslint/parser",
4+
parserOptions: {
5+
project: true,
6+
},
7+
plugins: ["@typescript-eslint"],
8+
extends: [
9+
"next/core-web-vitals",
10+
"plugin:@typescript-eslint/recommended-type-checked",
11+
"plugin:@typescript-eslint/stylistic-type-checked",
12+
],
13+
rules: {
14+
// These opinionated rules are enabled in stylistic-type-checked above.
15+
// Feel free to reconfigure them to your own preference.
16+
"@typescript-eslint/array-type": "off",
17+
"@typescript-eslint/consistent-type-definitions": "off",
18+
19+
"@typescript-eslint/consistent-type-imports": [
20+
"warn",
21+
{
22+
prefer: "type-imports",
23+
fixStyle: "inline-type-imports",
24+
},
25+
],
26+
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
27+
"@typescript-eslint/require-await": "off",
28+
"@typescript-eslint/no-misused-promises": [
29+
"error",
30+
{
31+
checksVoidReturn: { attributes: false },
32+
},
33+
],
34+
},
35+
};
36+
37+
module.exports = config;

.gitignore

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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+
# database
12+
/prisma/db.sqlite
13+
/prisma/db.sqlite-journal
14+
15+
# next.js
16+
/.next/
17+
/out/
18+
next-env.d.ts
19+
20+
# production
21+
/build
22+
23+
# misc
24+
.DS_Store
25+
*.pem
26+
27+
# debug
28+
npm-debug.log*
29+
yarn-debug.log*
30+
yarn-error.log*
31+
.pnpm-debug.log*
32+
33+
# local env files
34+
# do not commit any .env files to git, except for the .env.example file. https://create.t3.gg/en/usage/env-variables#using-environment-variables
35+
.env
36+
.env*.local
37+
38+
# vercel
39+
.vercel
40+
41+
# typescript
42+
*.tsbuildinfo

0 commit comments

Comments
 (0)