https://github.com/zanonnicola/shopify-importer
Import product, customers, orders from OpenCart to Shopify
https://github.com/zanonnicola/shopify-importer
importer nodejs opencart shopify shopify-api
Last synced: 7 months ago
JSON representation
Import product, customers, orders from OpenCart to Shopify
- Host: GitHub
- URL: https://github.com/zanonnicola/shopify-importer
- Owner: zanonnicola
- Created: 2017-11-12T23:29:13.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-12T11:53:35.000Z (almost 8 years ago)
- Last Synced: 2025-02-02T01:34:04.649Z (9 months ago)
- Topics: importer, nodejs, opencart, shopify, shopify-api
- Language: JavaScript
- Size: 10.2 MB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Shopify Importer
I'm thinking of creating a command line tool for importing stuff into Shopify. At the moment I've hard-coded a lot of things because I didn't have time to do it properly 😅.
You can fork it and dig into the code as you please.
> It's still in dev.... there might be **BUGS** 😱
## API KEYS
You will need the API Keys from your *Shopify* Store in order to use this tool.
1. Create a `.env` file in your root directory
2. Add the following lines:
```
SHOP_NAME=shop-name
API_KEY=XXXXXXXXXXXXXX
PASSWORD=XXXXXXXXXXXXX
```## RUN
`node index.js`
## SQL Query
```
SELECT `order`.`order_id`,
`date_added`,
`order_total`.`value` AS tax_total
FROM `order`
LEFT JOIN `order_total` ON `order`.`order_id` = `order_total`.`order_id`
ORDER BY `order_id` DESC,
`date_added` LIMIT 8
```