Reputation: 1254
I tried to create a test project with Ember-cli to try out things in isolatoin, but was running into this error were the server wouldn't start.
$ mkdir ember-cli/
$ cd ember-cli/
$ ember init
$ ember server
version: 0.1.2
You have to be inside an ember-cli project in order to use the serve command.
Upvotes: 0
Views: 1279
Reputation: 1254
You cannot name the directory "ember-cli" or "test". The directory is used as the project name and these are reserved words.
Upvotes: 1