Keine Beschreibung

Sebastian M. Nicolajsen d80fbe992d Corrected readme structure according to feedback vor 4 Jahren
src aa863eca47 add custom directories vor 4 Jahren
.babelrc.js 0ce2889584 fix: package.json vor 4 Jahren
.env.template 7a526a971d removed unwanted files vor 4 Jahren
.gitignore 7a526a971d removed unwanted files vor 4 Jahren
README.md d80fbe992d Corrected readme structure according to feedback vor 4 Jahren
medusa-config.js aa863eca47 add custom directories vor 4 Jahren
package.json 0ce2889584 fix: package.json vor 4 Jahren
yarn.lock 0ce2889584 fix: package.json vor 4 Jahren

README.md

Medusa Starter Default

This repo provides the skeleton to get you started with using Medusa. Follow the steps below to get ready.

Prerequisites

  • Have Postgresql installed and ensure it is running and initialized.

    • brew install postgresql
    • brew services start postgresql
    • createdb
  • Install Redis and ensure that it is running.

    • brew install redis
    • brew services start redis
  • Have Yarn and related packages installed globally:

    • Install yarn if needed brew install yarn
    • Install packages yarn global add npm @babel/core

Running Medusa

  • Copy the .env.template file to a .env file in the root directory
  • Setup a Stripe account and add your API key and webhook secret to your .env
  • Setup a Sendgrid account and add your API key to your .env
  • Install all dependencies yarn
  • Create a local postgres database using psql -h localhost -c 'create database "medusa-development";'
  • Migrate the database medusa migrations run
  • Run medusa develop

Your local Medusa server is now running on port 9000.

Visit docs.medusa-commerce.com for further guides.