Browse Source

Update README.md

Sebastian Rindom 3 years ago
parent
commit
0b5d4ee17d
1 changed files with 14 additions and 28 deletions
  1. 14 28
      README.md

+ 14 - 28
README.md

@@ -1,42 +1,28 @@
-# Medusa Starter Default
+# `medusa-starter-sqlite`
 
 
 This repo provides the skeleton to get you started with using Medusa. Follow the steps below to get ready.
 This repo provides the skeleton to get you started with using Medusa. Follow the steps below to get ready.
 
 
 ## Prerequisites
 ## Prerequisites
-- Have Postgresql installed and ensure it is running and initialized.
-    - `$ brew install postgresql`
-    - `$ brew services start postgresql`
-    - `$ createdb`
+This starter has minimal prerequisites and most of these will usually already be installed on your computer.
 
 
-- Install Redis and ensure that it is running.
-    - `$ brew install redis`
-    - `$ brew services start redis`
+- [Install Node.js](https://nodejs.org/en/download/)
+- [Install git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
+- [Install SQLite](https://www.sqlite.org/download.html)
 
 
-- Have Yarn and related packages installed globally:
-    - Install yarn if needed `$ brew install yarn` 
-    - Install packages `$ yarn global add npm @babel/core`
-
-
-## Running Medusa
-- Get your environment variables ready: 
-  ```
-  $ mv .env.template .env
-  ```
-- Install all dependencies 
-  ```
-  $ yarn
-  ```
-- Create a local postgres database using 
+## Setting up your store
+- Install the Medusa CLI
   ```
   ```
-  $ psql -h localhost -c 'create database "medusa-development";'
+  npm install -g @medusajs/medusa
+  yarn global add @medusajs/medusa
   ```
   ```
-- Migrate and seed the database 
+- Create a new Medusa project
   ```
   ```
-  $ yarn seed
+  medusa new medusa-sqlite https://github.com/medusajs/medusa-starter-sqlite
   ```
   ```
-- Start the Medusa server:
+- Run your project
   ```
   ```
-  $ medusa develop
+  cd medusa-sqlite
+  medusa develop
   ```
   ```
 
 
 Your local Medusa server is now running on port **9000**. 
 Your local Medusa server is now running on port **9000**.