- Yinka - @yinkakun
Medusa Storefronts don't have to be boring. This starter is an elegant and beautiful NextJS Storefront for Medusa. Styled using TailwindCSS, animations with Framer Motion, and deployed on Vercel.
Live Demo: https://medusa-starter-monster.vercel.app
Video Demo: https://youtu.be/SBDtyHtv9xU
- Properly documented
- Smooth Scrolling with Lenis
- Animated page transitions with Framer Motion
- TypeScript
- Responsive
- Beautiful by default
- ESLint — To find and fix problems in your code
- Prettier — Code Formatter for consistent style
- Path Mapping — Import components or images using the
@
prefix
Clone the repository and navigate to the directory.
# clone repository
git clone https://github.com/yinkakun/medusa-starter-monster.git
# navigate to the directory
cd medusa-starter-monster
-
Navigate to the
server
folder and runyarn install
-
Rename the
.env.example
file at the root of the folder to.env
-
Set up AWS S3 Bucket. Follow this tutorial to set up an AWS S3 Bucket for Medusa S3 File Plugin up until the end of the
Create S3 Bucket
section. As the plugin is already installed, you just need to add the environment variables to the.env
file. -
Setup Postgres Database On Your Computer:
-
If you don't have Postgres installed, follow these tutorials to install it on macOS, Linux, and Windows
-
Create a database from the command line with
psql
:# connect to postgres psql postgres # create user CREATE USER medusa_starter_monster_admin WITH PASSWORD 'medusa_starter_monster_admin_password'; # create database CREATE DATABASE medusa_starter_monster OWNER medusa_starter_monster_admin; # grant privileges GRANT ALL PRIVILEGES ON DATABASE medusa_starter_monster TO medusa_starter_monster_admin; # exit quit;
-
Add database URL to the
.env
file - The URL should be in the formatpostgres:https://<username>:<password>@<host>:<port>/<database>
. The default port is5432
. So the URL for the database created above would bepostgres:https://medusa_starter_monster_admin:medusa_starter_monster_admin_password@localhost:5432/medusa_starter_monster
-
-
Setup Local Redis Cache:
-
If you don't have Redis installed already, This tutorial explains how to install Redis
-
Start Redis if it's not already running in the background. Read more about starting Redis here
# macOS brew services start redis # Linux sudo systemctl start redis
-
Add Redis URL to the
.env
file - The default Redis URL on localhost isredis:https://localhost:6379
-
-
Start the medusa server:
# run migrations to instantiate the medusa schemas medusa migrations run # create a medusa admin user medusa user -e [email protected] -p medusa-admin-password # start server. yarn start
Since the Admin dashboard repo isn't modified, it's not included in this repo.
-
Clone the medusa-admin repo and install dependencies:
# clone the medusa admin repo git clone https://github.com/medusajs/admin medusa-admin cd medusa-admin # install dependencies yarn install # start the admin dashboard dev server (while the medusa server is running) yarn start
-
Log in with the medusa server login credentials created above.
-
Import the
monster-products.csv
file from the project's root folder using the admin dashboard. This will create products in the database that can be used to test the store. -
At the time of writing, there seems to be a bug with Product Collection creation from imported products. To fix this, we have to create Product collections manually. Fo to the
Products
page in the admin dashboard and click on theCollections
tab. Click on theCreate Collection
button and create a collection with the names:Monster Classic
,Monster Ultra
,Monster Hydro
,Juice Monster
andJava Monster
. Then group the imported products into their respective collections.
- Create at least one region. Medusa requires that to be able to create cart.
- Navigate to the
storefront
folder and install dependencies withyarn install
- While the medusa server is running, start the storefront dev server with
yarn dev