Skip to content

Commit

Permalink
did you think I forgot about you? :(
Browse files Browse the repository at this point in the history
  • Loading branch information
ixahmedxi committed Oct 25, 2023
1 parent b2676c0 commit 3f5e2ca
Show file tree
Hide file tree
Showing 266 changed files with 10,235 additions and 11,237 deletions.
175 changes: 0 additions & 175 deletions .all-contributorsrc

This file was deleted.

24 changes: 13 additions & 11 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
# NX
NX_CLOUD_ACCESS_TOKEN="NzIyMjllYzgtMzlkYS00N2U4LThjOGItOGU3YzM0OGQyMTk2fHJlYWQtb25seQ=="
# Sqlite database url (you can leave this as is)
DATABASE_URL="file:./dev.db"

# Database
DATABASE_URL="postgres://username:password@localhost:5432/db_name"
# If you're using turso for the DB, you will need this too
DATABASE_AUTH_TOKEN=

# Redis
UPSTASH_REDIS_REST_URL="<redis_url>"
UPSTASH_REDIS_REST_TOKEN="<redis_token>"
# Clerk Environment Variables
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=
CLERK_SECRET_KEY=

# Clerk authentication
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY=<publishable-key>
CLERK_SECRET_KEY=<secret-key>
# Don't need to change those
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/sign-in
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/sign-up
NEXT_PUBLIC_CLERK_AFTER_SIGN_IN_URL=/app
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/app
NEXT_PUBLIC_CLERK_AFTER_SIGN_UP_URL=/app

# Redis (Upstash)
UPSTASH_REDIS_REST_URL=
UPSTASH_REDIS_REST_TOKEN=
1 change: 0 additions & 1 deletion .eslintignore

This file was deleted.

34 changes: 30 additions & 4 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -1,9 +1,35 @@
/** @type {import('eslint').Linter.Config} */
/** @type {import("eslint").Linter.Config} */
const config = {
root: true,
extends: ['noodle/base'],
parser: "@typescript-eslint/parser",
parserOptions: {
tsconfigRootDir: __dirname,
project: true,
},
plugins: ["@typescript-eslint"],
extends: [
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended-type-checked",
"plugin:@typescript-eslint/stylistic-type-checked",
],
rules: {
// These opinionated rules are enabled in stylistic-type-checked above.
// Feel free to reconfigure them to your own preference.
"@typescript-eslint/array-type": "off",
"@typescript-eslint/consistent-type-definitions": "off",

"@typescript-eslint/consistent-type-imports": [
"warn",
{
prefer: "type-imports",
fixStyle: "inline-type-imports",
},
],
"@typescript-eslint/no-unused-vars": ["warn", { argsIgnorePattern: "^_" }],
"@typescript-eslint/no-misused-promises": [
2,
{
checksVoidReturn: { attributes: false },
},
],
},
};

Expand Down
8 changes: 4 additions & 4 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
name: Bug report
about: Create a report to help us improve
title: '[BUG]'
title: "[BUG]"
labels: bug
assignees: ''
assignees: ""
---

**Describe the bug**
Expand All @@ -20,8 +20,8 @@ If applicable, add screenshots to help explain your problem.

**Information (please complete the following information):**

- Node version [e.g. 18.15.0]
- Pnpm version [e.g. 8.6.6]
- Node version [e.g. 18.17.0]
- Pnpm version [e.g. 8.9.2]

**Additional context**
Add any other context about the problem here.
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
name: Feature request
about: Suggest an idea for this project
title: '[FEAT]'
title: "[FEAT]"
labels: enhancement
assignees: ''
assignees: ""
---

**Is your feature request related to a problem? Please describe.**
Expand Down
Loading

0 comments on commit 3f5e2ca

Please sign in to comment.