Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
508aaf9
project setup
novaprime-code Nov 30, 2024
3a7804e
remove node_modules from git
novaprime-code Nov 30, 2024
f414682
chore: Remove unnecessary configuration files and dependencies
novaprime-code Nov 30, 2024
182ebf3
test
novaprime-code Nov 30, 2024
dca02cc
chore: Remove unnecessary configuration files and dependencies
novaprime-code Nov 30, 2024
59c21df
chore: Update npm dependencies and devDependencies
novaprime-code Nov 30, 2024
4b28c44
chore: Update npm dependencies and devDependencies
novaprime-code Nov 30, 2024
b501a68
chore: Add task creation and retrieval functionality
novaprime-code Nov 30, 2024
ef9edc6
chore: Update npm dependencies and devDependencies
novaprime-code Nov 30, 2024
6b299d1
chore: Remove unnecessary configuration files and dependencies
novaprime-code Dec 3, 2024
3611055
chore: Update npm dependencies and devDependencies
novaprime-code Dec 3, 2024
25580fd
chore: Update npm dependencies and devDependencies
novaprime-code Dec 5, 2024
2932a8b
chore: Update npm dependencies and devDependencies
novaprime-code Dec 5, 2024
0870f68
Update npm dependencies and devDependencies
novaprime-code Dec 5, 2024
a9db69e
project setup
novaprime-code Dec 5, 2024
c82b5d4
chore: Update npm dependencies and devDependencies
novaprime-code Dec 5, 2024
8df97f1
components set
novaprime-code Dec 5, 2024
ccf1f3f
chore: Update types and environment variables
novaprime-code Dec 5, 2024
e16e209
Update npm dependencies and devDependencies
novaprime-code Dec 5, 2024
3de9fa8
chore: Update SocialLogins component to center align the buttons
novaprime-code Dec 5, 2024
d791fa9
chore: Update login and registration pages with motion animations
novaprime-code Dec 5, 2024
25c09f3
chore: Update login and registration pages with motion animations
novaprime-code Dec 5, 2024
5a37700
chore: Update documentation for project setup and details
novaprime-code Dec 5, 2024
7490420
chore: Update documentation, login and registration pages, SocialLogi…
novaprime-code Dec 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@

# Environment variables declared in this file are automatically made available to Prisma.
# See the documentation for more detail: https://pris.ly/d/prisma-schema#accessing-environment-variables-from-the-schema

# Prisma supports the native connection string format for PostgreSQL, MySQL, SQLite, SQL Server, MongoDB and CockroachDB.
# See the documentation for all the connection string options: https://pris.ly/d/connection-strings

DATABASE_URL="postgresql://johndoe:randompassword@localhost:5432/mydb?schema=public"
NODE_ENV=development
NEXTAUTH_URL=http://localhost:3000

NEXT_PUBLIC_SUPABASE_URL=
NEXT_PUBLIC_SUPABASE_ANON_KEY=

DISCORD_CLIENT_ID=
DISCORD_CLIENT_SECRET=

GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=
3 changes: 3 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["next/core-web-vitals", "next/typescript"]
}
36 changes: 36 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.yarn/install-state.gz

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# local env files
.env*.local

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"cSpell.words": [
"supabase"
]
}
183 changes: 0 additions & 183 deletions Master_Readme.md

This file was deleted.

Loading