Skip to content

Commit f7a5e25

Browse files
committed
first commit
0 parents  commit f7a5e25

File tree

149 files changed

+17764
-0
lines changed

Some content is hidden

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

149 files changed

+17764
-0
lines changed

.env.sample

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
NEXT_PUBLIC_BASE_URL=http://localhost:3000 #change this in production
2+
NEXT_PUBLIC_APP_NAME=""
3+
NEXT_PUBLIC_ADMINISTRATOR_EMAIL=""
4+
NEXT_PUBLIC_MAINTAINER_EMAIL="" # the email on which you'll new orders information || this is an optional feild if you dont provide it you'll all informaiton on administrator email.
5+
MONGO_URI=""
6+
GOOGLE_CLIENT_ID=""
7+
GOOGLE_CLIENT_SECRET=""
8+
NEXTAUTH_URL=""
9+
NEXTAUTH_SECRET="Qk1TVC1kYXRhLXRvLWdhaW4tZ2FyYmFnZQ"
10+
SMTP_HOST=""
11+
SMTP_USER=""
12+
SMTP_PASSWORD=""
13+
SMTP_PORT=465 # default
14+
SECRET_ACCESS_KEY=""
15+
ACCESS_KEY=""
16+
REGION=""
17+
BUCKET_NAME=""
18+
RAZORPAY_KEY_ID=""
19+
RAZORPAY_KEY_SECRET=""

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env*.local
29+
30+
# vercel
31+
.vercel
32+
33+
# typescript
34+
*.tsbuildinfo
35+
next-env.d.ts

jsconfig.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"compilerOptions": {
3+
"paths": {
4+
"@/*": ["./src/*"]
5+
}
6+
}
7+
}

next.config.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
images: {
4+
domains: ['lh3.googleusercontent.com', 'aadarshguru-public.s3.amazonaws.com']
5+
}
6+
}
7+
8+
module.exports = nextConfig

0 commit comments

Comments
 (0)