Skip to content

An e-commerce web project built using AdonisJs web framework.

Notifications You must be signed in to change notification settings

LeohangRai/ek-ecommerce

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 

Repository files navigation

Ek-ecommerce

An e-commerce web project build on top of AdonisJs web framework.

Installation

Just run "npm install" to install all the necessary dependencies $ npm install OR $ npm i

Things to remember

This project uses redis as caching store for request-throttling. So, make sure to install and setup redis-server on your machine. Also, MySQL is used for database. Lastly, don't forget to add your own '.env' file by taking reference from the '.env.example' file.

Database migrations (required)

$ node ace migration:run

Database seeders (required)

$ node ace db:seed

Running the server:

$ node ace serve OR $ npm run dev