Skip to content

Commit 912f5ee

Browse files
committedOct 22, 2024
first commit
0 parents  commit 912f5ee

Some content is hidden

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

45 files changed

+10110
-0
lines changed
 

‎.env.example

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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+
# Drizzle
13+
DATABASE_URL="postgresql://postgres:password@localhost:5432/next-postgres"
14+
15+
# Next Auth
16+
# You can generate a new secret on the command line with:
17+
# openssl rand -base64 32
18+
# https://next-auth.js.org/configuration/options#secret
19+
# NEXTAUTH_SECRET=""
20+
NEXTAUTH_URL="http://localhost:3000"
21+
22+
# Next Auth Discord Provider
23+
DISCORD_CLIENT_ID=""
24+
DISCORD_CLIENT_SECRET=""

‎.eslintrc.cjs

+62
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
/** @type {import("eslint").Linter.Config} */
2+
const config = {
3+
"parser": "@typescript-eslint/parser",
4+
"parserOptions": {
5+
"project": true
6+
},
7+
"plugins": [
8+
"@typescript-eslint",
9+
"drizzle"
10+
],
11+
"extends": [
12+
"next/core-web-vitals",
13+
"plugin:@typescript-eslint/recommended-type-checked",
14+
"plugin:@typescript-eslint/stylistic-type-checked"
15+
],
16+
"ignorePatterns": ["src/components/ui/**/*"],
17+
"rules": {
18+
"@typescript-eslint/array-type": "off",
19+
"@typescript-eslint/consistent-type-definitions": "off",
20+
"@typescript-eslint/consistent-type-imports": [
21+
"warn",
22+
{
23+
"prefer": "type-imports",
24+
"fixStyle": "inline-type-imports"
25+
}
26+
],
27+
"@typescript-eslint/no-unused-vars": [
28+
"warn",
29+
{
30+
"argsIgnorePattern": "^_"
31+
}
32+
],
33+
"@typescript-eslint/require-await": "off",
34+
"@typescript-eslint/no-misused-promises": [
35+
"error",
36+
{
37+
"checksVoidReturn": {
38+
"attributes": false
39+
}
40+
}
41+
],
42+
"drizzle/enforce-delete-with-where": [
43+
"error",
44+
{
45+
"drizzleObjectName": [
46+
"db",
47+
"ctx.db"
48+
]
49+
}
50+
],
51+
"drizzle/enforce-update-with-where": [
52+
"error",
53+
{
54+
"drizzleObjectName": [
55+
"db",
56+
"ctx.db"
57+
]
58+
}
59+
]
60+
}
61+
}
62+
module.exports = config;

0 commit comments

Comments
 (0)
Please sign in to comment.