An online store maintained by a single vendor.
- Clone the repo to your local machine.
- Run
npm install
from the root directory. - Use the
schema.sql
to create the database used by the application (MySQL database is used). - Create a
.env
file inside the root directory. It should include following environment variables.PORT= MYSQL_HOST= MYSQL_USER= MYSQL_PASSWORD= MYSQL_DATABASE= SESS_NAME= SESS_SECRET= SESS_LIFETIME= NODE_ENV=
- To start the server, run
npm run dev
.