GitXplorerGitXplorer
i

ClarifaiMagento

public
0 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
e127750bd3aa4cd5a0b5ff5b4ddf282f20c99b04

remove codesponsor

iitsjw committed 7 years ago
Unverified
9342cdb1607f679e97d129aa65773ef7f4421f8b

change readme

hhophuochoanggia committed 7 years ago
Unverified
e180631898659a5e4f421607902f512386bd3502

first commit

hhophuochoanggia committed 7 years ago

README

The README file for this repository.

Clarifai Keyword for Magento

Hot Reload with express

  • npm run-script dev

Query param

  • url: img URL
  • magento: magento API to call with keywords

Express & ES6 REST API Boilerplate

This is a straightforward boilerplate for building REST APIs with ES6 and Express.

Tip: If you are using Mongoose, you can automatically expose your Models as REST resources using restful-mongoose.

Getting Started

# clone it
git clone git@github.com:developit/express-es6-rest-api.git
cd express-es6-rest-api

# Make it your own
rm -rf .git && git init && npm init

# Install dependencies
npm install

# Start development live-reload server
PORT=8080 npm run dev

# Start production server:
PORT=8080 npm start

Docker Support

cd express-es6-rest-api

# Build your docker
docker build -t es6/api-service .
#            ^      ^           ^
#          tag  tag name      Dockerfile location

# run your docker
docker run -p 8080:8080 es6/api-service
#                 ^            ^
#          bind the port    container tag
#          to your host
#          machine port   

License

MIT