This is the backend repository of the Odyssey Shop project. Odyssey Shop is a full-stack e-commerce application, with front end developed using Angular 8 and back end developed in NodeJS using NestJS, a NodeJS framework.
yarn install
The server is open on port 3000
in development mode.
# watch mode
$ yarn start:dev
# production mode
$ yarn start:prod
- Run
mysql -u [username] -p
in command line, enter password. - Run
USE odysseyshop
to select database - Run
SHOW TABLES
to view all existing tables - Run
SHOW FIELDS FROM [tablename]
to view all data types of the selected table
See Basic MySql Operations for more basic database operations.