Skip to content

Commit

Permalink
First version done
Browse files Browse the repository at this point in the history
  • Loading branch information
Ratnesh4193 committed Feb 25, 2024
1 parent 9360bb5 commit c4be802
Show file tree
Hide file tree
Showing 93 changed files with 18,792 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
NODE_LOCAL_PORT=5000
NODE_ENV=development
MONGODB_USER=admin-ratnesh
MONGODB_PASSWORD=test123
MONGODB_HOST=cluster0.c7iws.mongodb.net
MONGODB_DATABASE=picpulseDB
JWT_SECRET=mynameisratneshkumartiwari
DEFAULT_PROFILE_PIC_URL="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRJETLjaeEGteeWMrEWSlfslFi1A0v2TDXoEg&usqp=CAU"
SENDGRID_API_KEY=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
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"
}
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
7 changes: 7 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
}
}
4 changes: 4 additions & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};

export default nextConfig;
Loading

0 comments on commit c4be802

Please sign in to comment.