-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
264 changed files
with
26,589 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Your Medusa backend, should be updated to where you are hosting your server. Remember to update CORS settings for your server. See – https://docs.medusajs.com/usage/configurations#admin_cors-and-store_cors | ||
NEXT_PUBLIC_MEDUSA_BACKEND_URL=http://localhost:9000 | ||
|
||
# Your store URL, should be updated to where you are hosting your storefront. | ||
NEXT_PUBLIC_BASE_URL=http://localhost:8000 | ||
|
||
# Your preferred default region. When middleware cannot determine the user region from the "x-vercel-country" header, the default region will be used. ISO-2 lowercase format. | ||
NEXT_PUBLIC_DEFAULT_REGION=us | ||
|
||
# Your Stripe public key. See – https://docs.medusajs.com/add-plugins/stripe | ||
NEXT_PUBLIC_STRIPE_KEY= | ||
|
||
# Your PayPal Client ID. See – https://docs.medusajs.com/add-plugins/paypal | ||
NEXT_PUBLIC_PAYPAL_CLIENT_ID= | ||
|
||
# Your MeiliSearch / Algolia keys. See – https://docs.medusajs.com/add-plugins/meilisearch or https://docs.medusajs.com/add-plugins/algolia | ||
NEXT_PUBLIC_SEARCH_APP_ID= | ||
NEXT_PUBLIC_SEARCH_ENDPOINT=http://127.0.0.1:7700 | ||
NEXT_PUBLIC_SEARCH_API_KEY= | ||
NEXT_PUBLIC_INDEX_NAME=products | ||
|
||
# Your Next.js revalidation secret. See – https://nextjs.org/docs/app/building-your-application/data-fetching/fetching-caching-and-revalidating#on-demand-revalidation | ||
REVALIDATE_SECRET=supersecret |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module.exports = { | ||
extends: ["next/core-web-vitals"] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
const dotenv = require("dotenv"); | ||
|
||
let ENV_FILE_NAME = ""; | ||
switch (process.env.NODE_ENV) { | ||
case "production": | ||
ENV_FILE_NAME = ".env.production"; | ||
break; | ||
case "staging": | ||
ENV_FILE_NAME = ".env.staging"; | ||
break; | ||
case "test": | ||
ENV_FILE_NAME = ".env.test"; | ||
break; | ||
case "development": | ||
default: | ||
ENV_FILE_NAME = ".env"; | ||
break; | ||
} | ||
|
||
try { | ||
dotenv.config({ path: process.cwd() + "/" + ENV_FILE_NAME }); | ||
} catch (e) {} | ||
|
||
// CORS when consuming Medusa from admin | ||
const ADMIN_CORS = | ||
process.env.ADMIN_CORS || "http://localhost:7000,http://localhost:7001"; | ||
|
||
// CORS to avoid issues when consuming Medusa from a client | ||
const STORE_CORS = process.env.STORE_CORS || "http://localhost:8000"; | ||
|
||
const DATABASE_URL = | ||
process.env.DATABASE_URL || "postgres://medusa:password@localhost/medusa"; | ||
|
||
const REDIS_URL = process.env.REDIS_URL || "redis://localhost:6379"; | ||
|
||
const plugins = [ | ||
`medusa-fulfillment-manual`, | ||
`medusa-payment-manual`, | ||
{ | ||
resolve: `@medusajs/file-local`, | ||
options: { | ||
upload_dir: "uploads", | ||
}, | ||
}, | ||
{ | ||
resolve: "@medusajs/admin", | ||
/** @type {import('@medusajs/admin').PluginOptions} */ | ||
options: { | ||
autoRebuild: true, | ||
develop: { | ||
open: process.env.OPEN_BROWSER !== "false", | ||
}, | ||
}, | ||
}, | ||
{ | ||
resolve: `medusa-plugin-meilisearch`, | ||
options: { | ||
config: { | ||
host: process.env.MEILISEARCH_HOST, | ||
apiKey: process.env.MEILISEARCH_API_KEY, | ||
}, | ||
settings: { | ||
products: { | ||
indexSettings: { | ||
searchableAttributes: [ | ||
"title", | ||
"description", | ||
"variant_sku", | ||
], | ||
displayedAttributes: [ | ||
"id", | ||
"title", | ||
"description", | ||
"variant_sku", | ||
"thumbnail", | ||
"handle", | ||
], | ||
}, | ||
primaryKey: "id", | ||
}, | ||
}, | ||
}, | ||
}, | ||
]; | ||
|
||
const modules = { | ||
/*eventBus: { | ||
resolve: "@medusajs/event-bus-redis", | ||
options: { | ||
redisUrl: REDIS_URL | ||
} | ||
}, | ||
cacheService: { | ||
resolve: "@medusajs/cache-redis", | ||
options: { | ||
redisUrl: REDIS_URL | ||
} | ||
},*/ | ||
}; | ||
|
||
/** @type {import('@medusajs/medusa').ConfigModule["projectConfig"]} */ | ||
const projectConfig = { | ||
jwtSecret: process.env.JWT_SECRET, | ||
cookieSecret: process.env.COOKIE_SECRET, | ||
store_cors: STORE_CORS, | ||
database_url: DATABASE_URL, | ||
admin_cors: ADMIN_CORS, | ||
// Uncomment the following lines to enable REDIS | ||
redis_url: REDIS_URL | ||
}; | ||
|
||
/** @type {import('@medusajs/medusa').ConfigModule} */ | ||
module.exports = { | ||
projectConfig, | ||
plugins, | ||
modules, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
# IDEs | ||
.idea | ||
.vscode | ||
|
||
# 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* | ||
.pnpm-debug.log* | ||
|
||
# local env files | ||
.env | ||
.env.local | ||
.env.development.local | ||
.env.test.local | ||
.env.production.local | ||
|
||
# vercel | ||
.vercel | ||
|
||
# typescript | ||
*.tsbuildinfo | ||
node_modules | ||
|
||
.yarn | ||
.swc | ||
dump.rdb | ||
/test-results/ | ||
/playwright-report/ | ||
/blob-report/ | ||
/playwright/.cache/ | ||
/test-results/ | ||
/playwright-report/ | ||
/blob-report/ | ||
/playwright/.cache/ | ||
/playwright/.auth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"arrowParens": "always", | ||
"semi": false, | ||
"endOfLine": "auto", | ||
"singleQuote": false, | ||
"tabWidth": 2, | ||
"trailingComma": "es5" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
nodeLinker: node-modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 Medusa | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Oops, something went wrong.