Reputation: 503
I'm using a deployed github repo project as a starting point for my own development project. Using ember-cli and ember serve
I get a server running on localhost:4200. But it says
Proxying to https://xxxxx.yyy
where xxxxx.yyy is the website of the official deployed project, and the localhost:4200 server interacts with the deployed project's databases.
How do I tell ember to start a completely new local server that creates local empty databases, instead of proxying to the deployed website?
I tried ember build --environment=development
, and it rebuilt, but it acts the same.
Upvotes: 1
Views: 148
Reputation: 6397
It sounds like you have a proxy configured in the .ember-cli
file, as described in the guides. If you remove that property, Ember CLI should no longer use a proxy.
Upvotes: 2