This monorepo serves as a starter template/example for building D2C e-commerce applications using Medusa for e-commerce functionality and Nuxt for the frontend.
git clone [email protected]:doooooooomiki/medusa-nuxt.gitcd apps/medusa
# Create the .env file
cp .env.template .env
# Install dependencies
yarn
# Spin up the database and Redis
docker compose up -d
# Build the project
yarn build
# Run the migrations
yarn medusa db:migrate
# Seed the database
yarn seed
# Create an user
yarn medusa user -e "[email protected]" -p "supersecret"
# Start the development server
yarn dev