Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gunashekar02/e-commerce-application
An E-Commerce Application powered by Machine Learning and Blockchain
https://github.com/gunashekar02/e-commerce-application
Last synced: 6 days ago
JSON representation
An E-Commerce Application powered by Machine Learning and Blockchain
- Host: GitHub
- URL: https://github.com/gunashekar02/e-commerce-application
- Owner: GunaShekar02
- Created: 2020-03-17T14:38:35.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T01:38:59.000Z (almost 2 years ago)
- Last Synced: 2023-03-08T01:19:33.498Z (over 1 year ago)
- Language: JavaScript
- Size: 4.55 MB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# e-commerce-application
E-Commerce Application powered by Machine Learning and Blockchain
## Get Started
Get started developing...
```shell
# install deps
npm install# run in development mode
npm run dev# run tests
npm run test
```## Install Dependencies
Install all package dependencies (one time operation)
```shell
npm install
```## Run It
#### Run in *development* mode:
Runs the application is development mode. Should not be used in production```shell
npm run dev
```or debug it
```shell
npm run dev:debug
```#### Run in *production* mode:
Compiles the application and starts it in production production mode.
```shell
npm run compile
npm start
```## Test It
Run the Mocha unit tests
```shell
npm test
```or debug them
```shell
npm run test:debug
```## Try It
* Open you're browser to [http://localhost:3000](http://localhost:3000)
* Invoke the `/examples` endpoint
```shell
curl http://localhost:3000/api/v1/examples
```## Debug It
#### Debug the server:
```
npm run dev:debug
```#### Debug Tests
```
npm run test:debug
```#### Debug with VSCode
Add these [contents](https://github.com/cdimascio/generator-express-no-stress/blob/next/assets/.vscode/launch.json) to your `.vscode/launch.json` file
## Lint ItView prettier linter output
```
npm run lint
```Fix all prettier linter errors
```
npm run lint
```## Deploy It
Deploy to CloudFoundry
```shell
cf push e-commerce-application
```