chec / seeder

Chec seeder tool, used in example stores to seed product data when creating them with the CLI's "demo store" command
https://commercejs.com/blog/getting-started-with-the-chec-cli/
BSD 3-Clause "New" or "Revised" License
6 stars 4 forks source link

Seeder throwing 404 error #19

Open kvisca opened 2 years ago

kvisca commented 2 years ago

Some users are reporting that the seeder is throwing a 404 error when seeding through the CLI.

vinnielo commented 2 years ago

ive tried the commerce js demo store and the chop chop and I get the same errors: Could not push an object to the categories endpoint (Response code 404 (Not Found)):

alex8shan commented 2 years ago

The index.js is actually visiting https://api.chec.io//v1/, instead of https://api.chec.io/v1/, so I just imported a local copy and modified line 63 and 85.

robbieaverill commented 2 years ago

Thanks @minghaoshan, would you like to make a pull request to update it?

snobvisions commented 2 years ago

Thanks @minghaoshan, would you like to make a pull request to update it?

MeetMartin commented 2 years ago

I have created a pull request for this in https://github.com/chec/seeder/pull/20. This has been tested and it works on my Windows machine.

TheCodeKing commented 2 years ago

Any chance of a new release with the fix?

vitustockholm commented 10 months ago

The index.js is actually visiting https://api.chec.io//v1/, instead of https://api.chec.io/v1/, so I just imported a local copy and modified line 63 and 85.