Pārlūkot izejas kodu

Update README.md

Herbert Vojčík 11 gadi atpakaļ
vecāks
revīzija
0794e4daab
3 mainītis faili ar 12 papildinājumiem un 11 dzēšanām
  1. 12 8
      README.md
  2. 0 1
      start.bat
  3. 0 2
      start.sh

+ 12 - 8
README.md

@@ -6,20 +6,24 @@ Various amber examples
 Getting started
 ===============
 
-To get started you must first initialize the Git submodules these projects depend on:
+To get started you must first get the tools for this project:
 
-`git submodule update --init --recursive`
-`cd vendor/amber`
-`bower install`  (requires bower to be installed: npm install -g bower)
+    npm install -g amber-cli
+    npm install -g bower
 
-Afterwards execute one of the start scripts:
+ and dependencies of this project:
+ 
+    git submodule update --init --recursive
+    npm install
+    bower install
 
-`start.sh`  (Linux, OS X)
-`start.bat` (Windows)
+Afterwards execute the server:
+
+`amber serve`
 
 and point your browser to
 
-http://localhost:4000/
+`http://localhost:4000/`
 
 Rebuilding examples using Grunt.js (development mode)
 ====================================================

+ 0 - 1
start.bat

@@ -1 +0,0 @@
-vendor\amber\bin\amber.bat serve %*

+ 0 - 2
start.sh

@@ -1,2 +0,0 @@
-#! /bin/sh
-vendor/amber/bin/amber serve $@