Skip to content

Commit

Permalink
Initial
Browse files Browse the repository at this point in the history
  • Loading branch information
ahmedjadan committed Aug 25, 2021
0 parents commit 84883ab
Show file tree
Hide file tree
Showing 38 changed files with 4,494 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js

# 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
.env.development.local
.env.test.local
.env.production.local

# vercel
.vercel
.env
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
{
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
A shop build with Nextjs, tailwindcss and Strapi as a backend, payment integration with PayPal

12 changes: 12 additions & 0 deletions jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"compilerOptions": {
"baseUrl": "./src",
"paths": {
"@/components/*": ["components/*"],
"@/data/*": ["data/*"],
"@/Layout/*": ["Layout/*"],
"@/services/*": ["services/*"],
"@/styles/*": ["styles/*"]
}
}
}
9 changes: 9 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
module.exports = {
images : {
domains: ['res.cloudinary.com']
},
publicRuntimeConfig: {
// Will be available on both server and client
backendUrl: process.env.NEXT_PUBLIC_STRAPI_API_URL,
},
}
Loading

0 comments on commit 84883ab

Please sign in to comment.