Medusajs open source ecommerce platform
one-click deploy on railway!
Combine Medusa's modules for your commerce backend with the newest Next.js 14 features for a performant storefront.
This boilerplate is a monorepo consisting of snapshot of newly released medusajs 2.0 (preview) backend and storefront app created with npx create-medusa-app@preview
July 2024. Modified to be plug n' play deployable on railway.app!
Please change the value of environtment variables: COOCKIE_SECRET
and JWT_SECRET
.
- Install dependencies
yarn
- Rename
.env.template
->.env
- To connect to your online database, from local; copy the
DATABASE_URL
value that have been auto generated on railway, and add to your.env
- postgres database (will be automatically generated if using railway template)
- redis (will be automatically generated if using railway template)
cd medusajs-backend/
yarn build
will compile app.
yarn dev
will start local admin dashboard app to manage products and orders etc.
yarn start
will start the backend server, needed for the storefront
intall dependencies yarn
Rename .env.local.template
-> .env.local
- running backend
npm run start
- needed to fetch products data and more, to build nextjs pages.
cd medusajs-storefront/
yarn wait
will keep calling backend endpoint until a backend responds.
yarn build
will build the nextjs app - remember to start backend app prior to running this command.
yarn start
will serve the frontend web shop.