totaljs / cms

Node.js Content Management System
http://www.totaljs.com/cms/
MIT License
228 stars 92 forks source link

Instruction in readme.md is wrong #3

Closed xstable closed 7 years ago

xstable commented 7 years ago

You write:

innstall $ npm install total.js open cms directory $ cd cms run it node debug.js

But there is no /cms. So erase the second line, and all will be fine :)

molda commented 7 years ago

Hi @xstable it assumes you've named the directory cms or used git to download it which would create the dir for you. But it should probably be more like this to make it clear:

$ git clone https://github.com/totaljs/cms.git
$ cd cms
$ npm install total.js
$ node debug.js

I'll update the readme.

Thanks.